Compare commits
75 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
697ab3296d | |
|
|
7e7653ec83 | |
|
|
42689499d3 | |
|
|
66e7635119 | |
|
|
dcc793c58b | |
|
|
378de24dd1 | |
|
|
157e1e1bf4 | |
|
|
8736e02a92 | |
|
|
ac49540a5d | |
|
|
e6cf0e3067 | |
|
|
f48a56c70b | |
|
|
45a9950c70 | |
|
|
c716e08c45 | |
|
|
a1319396b6 | |
|
|
cf7edba39f | |
|
|
ead730305f | |
|
|
020ce8fafe | |
|
|
1d1b3c02dd | |
|
|
fb7509ec14 | |
|
|
abcc8e99db | |
|
|
ee877c9b83 | |
|
|
7863a5519e | |
|
|
b76888ba7d | |
|
|
b03becfe5e | |
|
|
31c3e5b3a5 | |
|
|
c3304099bd | |
|
|
3e2b73d130 | |
|
|
2ad44b5620 | |
|
|
bf1a4e1c0e | |
|
|
a53d7887fd | |
|
|
c371008360 | |
|
|
fecd6e866f | |
|
|
ae0ce4aed1 | |
|
|
54f125ab41 | |
|
|
bd4fb25a6a | |
|
|
c50785a27b | |
|
|
d0130b50f1 | |
|
|
2e746d29cd | |
|
|
65e0880851 | |
|
|
68da7ae3fb | |
|
|
0cc8865028 | |
|
|
d8fd3d7111 | |
|
|
904a03733d | |
|
|
fd33426219 | |
|
|
630439bc48 | |
|
|
a0efc33ec6 | |
|
|
9180d330d6 | |
|
|
b57fa29fae | |
|
|
ebff1d9baf | |
|
|
3ef6f67766 | |
|
|
4f384cc9b9 | |
|
|
7519ae9e9b | |
|
|
438091d3b4 | |
|
|
2464e440a3 | |
|
|
7cfc5c41a1 | |
|
|
c5738bf038 | |
|
|
1bfad9a4f6 | |
|
|
0e471b1c99 | |
|
|
0c51132528 | |
|
|
d06a629aff | |
|
|
5f31996982 | |
|
|
576457d5b0 | |
|
|
5927cf91e1 | |
|
|
35748d099c | |
|
|
dffaafcd40 | |
|
|
907305858a | |
|
|
62be9ca44f | |
|
|
88777f82a2 | |
|
|
90c9db731b | |
|
|
39de22388f | |
|
|
66ece3ccdf | |
|
|
1825e5c64b | |
|
|
d10db4eee7 | |
|
|
b03e80e279 | |
|
|
0968bfc157 |
|
|
@ -2,6 +2,8 @@
|
|||
# will have compiled files and executables
|
||||
debug/
|
||||
target/
|
||||
out/
|
||||
.env
|
||||
|
||||
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
|
||||
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
|
||||
|
|
@ -9,3 +11,4 @@ Cargo.lock
|
|||
|
||||
# These are backup files generated by rustfmt
|
||||
**/*.rs.bk
|
||||
|
||||
|
|
|
|||
27
Cargo.toml
27
Cargo.toml
|
|
@ -1,12 +1,23 @@
|
|||
[package]
|
||||
name = "khguide"
|
||||
version = "1.0.2"
|
||||
edition = "2021"
|
||||
version = "1.4.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
askama = "0.12.1"
|
||||
serde = { version = "1.0.203", features = ["derive"] }
|
||||
serde_json = "1.0.118"
|
||||
tracing = "0.1.40"
|
||||
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
||||
itertools = "0.13.0"
|
||||
askama = "0.14.0"
|
||||
serde = { version = "1.0.228", features = ["derive"] }
|
||||
serde_json = "1.0.145"
|
||||
toml = "0.9.8"
|
||||
tracing = "0.1.41"
|
||||
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
|
||||
itertools = "0.14.0"
|
||||
blake3 = "1.8.2"
|
||||
ordered-float = { version = "5.1.0", features = ["serde"] }
|
||||
|
||||
[features]
|
||||
default = ["bbs", "ddd", "kh3", "kh2", "kh1"]
|
||||
kh1 = []
|
||||
kh2 = []
|
||||
kh3 = []
|
||||
bbs = []
|
||||
ddd = []
|
||||
|
|
|
|||
37
README.md
37
README.md
|
|
@ -1,9 +1,36 @@
|
|||
# KHGuide
|
||||
|
||||
A small static page generator for command melding in Kingdom Hearts: Birth By Sleep. It generates a static html (index.html) file that lists all commands and how they're melded and using some vanilla javascript it allows for filtering and searching of these commands.
|
||||
A small static page generator for guides on a bunch of Kingdom Hearts features.
|
||||
|
||||
## How to use
|
||||
Such as:
|
||||
|
||||
- Probably the easiest way is to download the `index.html` file and open it with any browser.
|
||||
- Alternatively hosting a web server and serving the `index.html` file also works.
|
||||
- The third option requires an internet connection, using the hosted version [here](https://git.pixelatedw.xyz/pages/wynd/khguide/)
|
||||
- synthesis lists and trackers
|
||||
- enemy drops and location
|
||||
- command melding for Birth By Sleep
|
||||
- spirit boards for Dream Drop Distance
|
||||
- food and pro codes simulators for Kingdom Hearts 3
|
||||
|
||||
## Usage
|
||||
|
||||
- Probably the easiest way is to use the hosted version offered [here](https://git.pixelatedw.xyz/pages/wynd/khguide/)
|
||||
- For a local version you'll need a web server to serve CSS and JavaScript modules, read the below Development section for this
|
||||
|
||||
## Development
|
||||
|
||||
### Prerequisite:
|
||||
|
||||
- git
|
||||
- [Rust 1.85](https://www.rust-lang.org/tools/install)
|
||||
- [Just](https://github.com/casey/just?tab=readme-ov-file#installation)
|
||||
- A locally running web server that can serve files, such as [caddy](https://github.com/caddyserver/caddy)
|
||||
|
||||
### Setup
|
||||
|
||||
1. Clone the repo locally using git
|
||||
2. Setup your web server and make sure it runs
|
||||
3. Configure the web server so it serves files
|
||||
- Caddy: [`file_server`](https://caddyserver.com/docs/caddyfile/directives/file_server)
|
||||
4. Use `just` or `just build` this will generate all the HTML files
|
||||
5. Copy all assets from the newly generated `out` folder inside caddy's `site` folder to be served
|
||||
- Make sure the path served is the same as the `BASE_URL` env var (ex: `site/khguide` corresponds to `BASE_URL="/khguide"`)
|
||||
6. Access the app at `localhost`
|
||||
|
|
|
|||
|
|
@ -0,0 +1,2 @@
|
|||
[general]
|
||||
whitespace = "suppress"
|
||||
4166
index.html
4166
index.html
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,207 @@
|
|||
spirit = "Meow Wow"
|
||||
order = 1
|
||||
|
||||
[[routes]]
|
||||
color = "purple"
|
||||
id = 0
|
||||
name = "Stray"
|
||||
|
||||
[[routes.tips]]
|
||||
tip = "Tail"
|
||||
to = "Smart Cookie"
|
||||
|
||||
[[routes.tips]]
|
||||
tip = "Face"
|
||||
to = "Rascal"
|
||||
|
||||
[[routes.tips]]
|
||||
tip = "Legs"
|
||||
to = "Sidekick"
|
||||
|
||||
[[routes]]
|
||||
color = "blue"
|
||||
id = 1
|
||||
name = "Smart Cookie"
|
||||
|
||||
[[routes.tips]]
|
||||
tip = "Tail"
|
||||
to = "Stray"
|
||||
|
||||
[[routes.tips]]
|
||||
tip = "Tail"
|
||||
to = "Rascal"
|
||||
|
||||
[[routes.tips]]
|
||||
tip = "Face"
|
||||
to = "Sidekick"
|
||||
|
||||
[[routes]]
|
||||
color = "yellow"
|
||||
id = 3
|
||||
name = "Rascal"
|
||||
|
||||
[[routes.tips]]
|
||||
tip = "Legs"
|
||||
to = "Stray"
|
||||
|
||||
[[routes.tips]]
|
||||
tip = "Face"
|
||||
to = "Smart Cookie"
|
||||
|
||||
[[routes.tips]]
|
||||
tip = "Tail"
|
||||
to = "Sidekick"
|
||||
|
||||
[[routes]]
|
||||
color = "green"
|
||||
id = 4
|
||||
name = "Sidekick"
|
||||
|
||||
[[routes.tips]]
|
||||
tip = "Legs"
|
||||
to = "Stray"
|
||||
|
||||
[[routes.tips]]
|
||||
tip = "Face"
|
||||
to = "Smart Cookie"
|
||||
|
||||
[[routes.tips]]
|
||||
tip = "Tail"
|
||||
to = "Rascal"
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
path = ["E"]
|
||||
pos = "A2"
|
||||
price = ""
|
||||
type = "Start"
|
||||
|
||||
[[abilities]]
|
||||
name = "Link Critical"
|
||||
path = ["W", "E"]
|
||||
pos = "B2"
|
||||
price = "10 LP"
|
||||
type = "Spirit"
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
path = ["S", "E"]
|
||||
pos = "C1"
|
||||
price = "30 LP"
|
||||
type = "Stat"
|
||||
|
||||
[[abilities]]
|
||||
name = "Cure"
|
||||
path = ["N", "W", "E", "S"]
|
||||
pos = "C2"
|
||||
price = "50 LP"
|
||||
type = "Magic"
|
||||
|
||||
[[abilities]]
|
||||
name = "Item Boost"
|
||||
path = ["E", "N"]
|
||||
pos = "C3"
|
||||
price = "30 LP"
|
||||
type = "Stat"
|
||||
|
||||
[[abilities]]
|
||||
name = "Light Screen"
|
||||
path = ["E", "W"]
|
||||
pos = "D1"
|
||||
price = "20 LP"
|
||||
type = "Stat"
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
path = ["E", "W"]
|
||||
pos = "D2"
|
||||
price = "Level 10"
|
||||
type = "Checkpoint"
|
||||
|
||||
[[abilities]]
|
||||
name = "Slow"
|
||||
path = ["E", "W"]
|
||||
pos = "D3"
|
||||
price = "50 LP"
|
||||
type = "Magic"
|
||||
|
||||
[[abilities]]
|
||||
name = "Defense Boost"
|
||||
path = ["E", "W"]
|
||||
pos = "E1"
|
||||
price = "100 LP"
|
||||
type = "Stat"
|
||||
|
||||
[[abilities]]
|
||||
name = "Cura"
|
||||
path = ["E", "W"]
|
||||
pos = "E2"
|
||||
price = "100 LP"
|
||||
type = "Magic"
|
||||
|
||||
[[abilities]]
|
||||
name = "Poison Block"
|
||||
path = ["E", "S", "W"]
|
||||
pos = "E3"
|
||||
price = "30 LP"
|
||||
type = "Stat"
|
||||
|
||||
[[abilities]]
|
||||
name = "Spark"
|
||||
path = ["N"]
|
||||
pos = "E4"
|
||||
price = "50 LP"
|
||||
type = "Magic"
|
||||
|
||||
[[abilities]]
|
||||
name = "Confusion Block"
|
||||
path = ["E", "W"]
|
||||
pos = "F1"
|
||||
price = "30 LP"
|
||||
route = 0
|
||||
type = "Stat"
|
||||
|
||||
[[abilities]]
|
||||
name = "Leaf Bracer"
|
||||
path = ["E", "W"]
|
||||
pos = "F2"
|
||||
price = "300 LP"
|
||||
type = "Support"
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Haste"
|
||||
path = ["E", "W"]
|
||||
pos = "F3"
|
||||
price = "30 LP"
|
||||
route = 1
|
||||
type = "Stat"
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
path = ["W"]
|
||||
pos = "G1"
|
||||
price = "30 LP"
|
||||
route = 0
|
||||
type = "Stat"
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
path = ["E", "W"]
|
||||
pos = "G2"
|
||||
price = "Level 25"
|
||||
type = "Checkpoint"
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Boost"
|
||||
path = ["W"]
|
||||
pos = "G3"
|
||||
price = "100 LP"
|
||||
route = 1
|
||||
type = "Stat"
|
||||
|
||||
[[abilities]]
|
||||
name = "Curaga"
|
||||
path = ["W"]
|
||||
pos = "H2"
|
||||
price = "150 LP"
|
||||
type = "Magic"
|
||||
|
|
@ -0,0 +1,228 @@
|
|||
spirit = "Tama Sheep"
|
||||
order = 2
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Mumbler"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Picker-Upper"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Snooze Maker"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Pillow Fluffer"
|
||||
tip = "Horn"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Picker-Upper"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Mumbler"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Pillow Fluffer"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Snooze Maker"
|
||||
tip = "Horn"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Snooze Maker"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Pillow Fluffer"
|
||||
tip = "Feet"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Picker-Upper"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Mumbler"
|
||||
tip = "Feet"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Pillow Fluffer"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Snooze Maker"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Picker-Upper"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Mumbler"
|
||||
tip = "Feet"
|
||||
|
||||
[[routes]]
|
||||
id = 100
|
||||
name = "Secret Route 1"
|
||||
color = "secret1"
|
||||
tips = []
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "A1"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Sleep"
|
||||
pos = "A2"
|
||||
type = "Magic"
|
||||
price = "10 LP"
|
||||
path = ["N", "S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Boost"
|
||||
pos = "A3"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Sleep Block"
|
||||
pos = "A4"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "B2"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["E", "W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Defense Boost"
|
||||
pos = "B4"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["E", "W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Water Screen"
|
||||
pos = "C2"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["E", "W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Slow Block"
|
||||
pos = "C4"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["E", "W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Secret"
|
||||
pos = "D2"
|
||||
type = "Secret"
|
||||
price = "10 LP"
|
||||
path = ["W", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Balloon"
|
||||
pos = "D3"
|
||||
type = "Magic"
|
||||
price = "50 LP"
|
||||
route = 100
|
||||
path = ["N", "E"]
|
||||
tip = "Unlocks with Secret panel at D2"
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "D4"
|
||||
type = "Checkpoint"
|
||||
price = "Link x1"
|
||||
path = ["E", "W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Stop Block"
|
||||
pos = "E2"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 100
|
||||
path = ["S", "E"]
|
||||
tip = "Unlocks with Secret panel at D2"
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
pos = "E3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 100
|
||||
path = ["W", "N"]
|
||||
tip = "Unlocks with Secret panel at D2"
|
||||
|
||||
[[abilities]]
|
||||
name = "Sleepra"
|
||||
pos = "E4"
|
||||
type = "Magic"
|
||||
price = "100 LP"
|
||||
path = ["E", "W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "F2"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
route = 100
|
||||
path = ["E", "W", "S"]
|
||||
tip = "Unlocks with Secret panel at D2"
|
||||
|
||||
[[abilities]]
|
||||
name = "Water Screen"
|
||||
pos = "F3"
|
||||
type = "Stat"
|
||||
price = "40 LP"
|
||||
route = 0
|
||||
path = ["N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "F4"
|
||||
type = "Checkpoint"
|
||||
price = "Link x2"
|
||||
path = ["E", "W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "G2"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
route = 100
|
||||
path = ["W"]
|
||||
tip = "Unlocks with Secret panel at D2"
|
||||
|
||||
[[abilities]]
|
||||
name = "Support Boost"
|
||||
pos = "G3"
|
||||
type = "Support"
|
||||
price = "200 LP"
|
||||
route = 0
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Sleepga"
|
||||
pos = "G4"
|
||||
type = "Magic"
|
||||
price = "150 LP"
|
||||
path = ["W"]
|
||||
|
|
@ -0,0 +1,214 @@
|
|||
spirit = "Yoggy Ram"
|
||||
order = 3
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Trailblazer"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Jumper"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Leader"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Powerhouse"
|
||||
tip = "Chest"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Powerhouse"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Leader"
|
||||
tip = "Chest"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Trailblazer"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Jumper"
|
||||
tip = "Chest"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Leader"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Powerhouse"
|
||||
tip = "Hind Legs"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Jumper"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Trailblazer"
|
||||
tip = "Hind Legs"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Jumper"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Trailblazer"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Powerhouse"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Leader"
|
||||
tip = "Tail"
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Screen"
|
||||
pos = "A3"
|
||||
type = "Stat"
|
||||
price = "80 LP"
|
||||
route = 0
|
||||
path = ["E", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Defense Boost"
|
||||
pos = "A4"
|
||||
type = "Stat"
|
||||
price = "200 LP"
|
||||
route = 0
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "B2"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Esuna"
|
||||
pos = "B3"
|
||||
type = "Magic"
|
||||
price = "10 LP"
|
||||
path = ["N", "S", "E", "W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Screen"
|
||||
pos = "B4"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Bind Block"
|
||||
pos = "B5"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Screen"
|
||||
pos = "B6"
|
||||
type = "Stat"
|
||||
price = "40 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Screen"
|
||||
pos = "B7"
|
||||
type = "Stat"
|
||||
price = "60 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Defense Boost"
|
||||
pos = "B8"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
pos = "C1"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 1
|
||||
path = ["S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire"
|
||||
pos = "C2"
|
||||
type = "Magic"
|
||||
price = "10 LP"
|
||||
path = ["N", "S", "W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "C3"
|
||||
type = "Checkpoint"
|
||||
price = "Link x4"
|
||||
path = ["N", "S", "W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Treasure Magnet"
|
||||
pos = "C4"
|
||||
type = "Support"
|
||||
price = "50 LP"
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Screen"
|
||||
pos = "D1"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
route = 1
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Boost"
|
||||
pos = "D2"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Windmill"
|
||||
pos = "D3"
|
||||
type = "Attack"
|
||||
price = "150 LP"
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "E2"
|
||||
type = "Checkpoint"
|
||||
price = "Level 10"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fira"
|
||||
pos = "F2"
|
||||
type = "Magic"
|
||||
price = "100 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "G2"
|
||||
type = "Checkpoint"
|
||||
price = "Level 20"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Firaga"
|
||||
pos = "H2"
|
||||
type = "Magic"
|
||||
price = "150 LP"
|
||||
path = ["W"]
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
spirit = "Komory Bat"
|
||||
order = 4
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Rescuer"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Aggro"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Wingman"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Saboteur"
|
||||
tip = "Ears"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Aggro"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Rescuer"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Wingman"
|
||||
tip = "Wings"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Saboteur"
|
||||
tip = "Face"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Wingman"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Rescuer"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Aggro"
|
||||
tip = "Ears"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Saboteur"
|
||||
tip = "Wings"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Saboteur"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Rescuer"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Aggro"
|
||||
tip = "Ears"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Wingman"
|
||||
tip = "Ears"
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "A3"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Waking Dream"
|
||||
pos = "B3"
|
||||
type = "Spirit"
|
||||
price = "10 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "C1"
|
||||
type = "Checkpoint"
|
||||
price = "Link x2"
|
||||
path = ["E", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Zero Gravity"
|
||||
pos = "C2"
|
||||
type = "Magic"
|
||||
price = "50 LP"
|
||||
path = ["N", "E", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Confuse"
|
||||
pos = "C3"
|
||||
type = "Magic"
|
||||
price = "50 LP"
|
||||
path = ["S", "N", "W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Dark Screen"
|
||||
pos = "C4"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["N", "E", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "C5"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
route = 0
|
||||
path = ["N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Zero Gravira"
|
||||
pos = "D1"
|
||||
type = "Magic"
|
||||
price = "100 LP"
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Confusion Block"
|
||||
pos = "D2"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Drain Dive"
|
||||
pos = "D3"
|
||||
type = "Attack"
|
||||
price = "50 LP"
|
||||
path = ["N", "S", "W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Boost"
|
||||
pos = "D4"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["W", "N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "D5"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
route = 0
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Boost"
|
||||
pos = "E2"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "E3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "E", "N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Haste"
|
||||
pos = "E4"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 1
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Dark Screen"
|
||||
pos = "F3"
|
||||
type = "Stat"
|
||||
price = "40 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Haste"
|
||||
pos = "F4"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
route = 1
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "G3"
|
||||
type = "Checkpoint"
|
||||
price = "Link x2"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Confusing Strike"
|
||||
pos = "H3"
|
||||
type = "Attack"
|
||||
price = "100 LP"
|
||||
path = ["W"]
|
||||
|
|
@ -0,0 +1,226 @@
|
|||
spirit = "Pricklemane"
|
||||
order = 5
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Intellectual"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Volcano"
|
||||
tip = "Feet"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Bouncer"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Scrapper"
|
||||
tip = "Feet"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Volcano"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Intellectual"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Bouncer"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Scrapper"
|
||||
tip = "Tail"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Scrapper"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Bouncer"
|
||||
tip = "Tail"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Volcano"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Intellectual"
|
||||
tip = "Feet"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Bouncer"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Scrapper"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Volcano"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Intellectual"
|
||||
tip = "Tail"
|
||||
|
||||
[[routes]]
|
||||
id = 100
|
||||
name = "Secret Route 1"
|
||||
color = "secret1"
|
||||
tips = []
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
pos = "A3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Boost"
|
||||
pos = "A5"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
pos = "A6"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
route = 100
|
||||
path = ["E"]
|
||||
tip = "Unlocks with Secret panel at B6"
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "B1"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Strike Raid"
|
||||
pos = "B2"
|
||||
type = "Attack"
|
||||
price = "10 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Item Boost"
|
||||
pos = "B3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "S", "W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Time Bomb"
|
||||
pos = "B4"
|
||||
type = "Magic"
|
||||
price = "100 LP"
|
||||
path = ["N", "S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Haste"
|
||||
pos = "B5"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "S", "W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Secret"
|
||||
pos = "B6"
|
||||
type = "Secret"
|
||||
price = "10 LP"
|
||||
path = ["N", "S", "W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Poison Block"
|
||||
pos = "B7"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 100
|
||||
path = ["N", "S"]
|
||||
tip = "Unlocks with Secret panel at B6"
|
||||
|
||||
[[abilities]]
|
||||
name = "Circle Raid"
|
||||
pos = "B8"
|
||||
type = "Attack"
|
||||
price = "100 LP"
|
||||
route = 100
|
||||
path = ["N"]
|
||||
tip = "Unlocks with Secret panel at B6"
|
||||
|
||||
[[abilities]]
|
||||
name = "Stop Block"
|
||||
pos = "C2"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 0
|
||||
path = ["S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Sleep Block"
|
||||
pos = "C3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "E", "N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "C4"
|
||||
type = "Checkpoint"
|
||||
price = "Level 10"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Screen"
|
||||
pos = "C5"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Haste"
|
||||
pos = "C6"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
route = 100
|
||||
path = ["W"]
|
||||
tip = "Unlocks with Secret panel at B6"
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Haste"
|
||||
pos = "D2"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
route = 0
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "D3"
|
||||
type = "Checkpoint"
|
||||
price = "Link x5"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Defense Boost"
|
||||
pos = "D4"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Combo Plus"
|
||||
pos = "E3"
|
||||
type = "Support"
|
||||
price = "200 LP"
|
||||
path = ["W"]
|
||||
|
|
@ -0,0 +1,200 @@
|
|||
spirit = "Hebby Repp"
|
||||
order = 6
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Wheeler"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Salamander"
|
||||
tip = "Head"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Serpent"
|
||||
tip = "Head"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Hydra"
|
||||
tip = "Chest"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Salamander"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Hydra"
|
||||
tip = "Head"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Serpent"
|
||||
tip = "Head"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Wheeler"
|
||||
tip = "Chest"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Serpent"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Wheeler"
|
||||
tip = "Head"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Hydra"
|
||||
tip = "Head"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Salamander"
|
||||
tip = "Tail"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Hydra"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Salamander"
|
||||
tip = "Head"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Wheeler"
|
||||
tip = "Head"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Serpent"
|
||||
tip = "Chest"
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "A1"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Screen"
|
||||
pos = "A4"
|
||||
type = "Stat"
|
||||
price = "60 LP"
|
||||
route = 0
|
||||
path = ["E", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Defense Boost"
|
||||
pos = "A5"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
route = 0
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire"
|
||||
pos = "B1"
|
||||
type = "Magic"
|
||||
price = "10 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Screen"
|
||||
pos = "B3"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["E", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Boost"
|
||||
pos = "B4"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["N", "W", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Screen"
|
||||
pos = "B5"
|
||||
type = "Stat"
|
||||
price = "40 LP"
|
||||
path = ["N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
pos = "C1"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Boost"
|
||||
pos = "C3"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Boost"
|
||||
pos = "C5"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Boost"
|
||||
pos = "D1"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Slow Block"
|
||||
pos = "D2"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "D3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fira"
|
||||
pos = "D4"
|
||||
type = "Magic"
|
||||
price = "100 LP"
|
||||
path = ["S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "D5"
|
||||
type = "Checkpoint"
|
||||
price = "Link x3"
|
||||
path = ["W", "N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Windmill"
|
||||
pos = "D6"
|
||||
type = "Attack"
|
||||
price = "150 LP"
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
pos = "E3"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
route = 1
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "F3"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
route = 1
|
||||
path = ["W"]
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
spirit = "Sir Kyroo"
|
||||
order = 7
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Warrior"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Paladin"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Guardian"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Knight"
|
||||
tip = "Shield"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Paladin"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Warrior"
|
||||
tip = "Shield"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Guardian"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Knight"
|
||||
tip = "Wings"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Knight"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Guardian"
|
||||
tip = "Shield"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Warrior"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Paladin"
|
||||
tip = "Shield"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Guardian"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Knight"
|
||||
tip = "Shield"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Paladin"
|
||||
tip = "Body"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Warrior"
|
||||
tip = "Shield"
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "A2"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Water Screen"
|
||||
pos = "A6"
|
||||
type = "Stat"
|
||||
price = "60 LP"
|
||||
route = 0
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Strike Raid"
|
||||
pos = "B2"
|
||||
type = "Attack"
|
||||
price = "10 LP"
|
||||
path = ["W", "E", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Cure Boost"
|
||||
pos = "B3"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Water Boost"
|
||||
pos = "B4"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Haste"
|
||||
pos = "B5"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Water Screen"
|
||||
pos = "B6"
|
||||
type = "Stat"
|
||||
price = "40 LP"
|
||||
path = ["N", "S", "W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "B7"
|
||||
type = "Checkpoint"
|
||||
price = "Level 20"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blitz"
|
||||
pos = "B8"
|
||||
type = "Attack"
|
||||
price = "100 LP"
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Water Boost"
|
||||
pos = "C2"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
pos = "C6"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 0
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Boost"
|
||||
pos = "D2"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["W", "E", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Stop Block"
|
||||
pos = "D3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 1
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Cure Boost"
|
||||
pos = "D4"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
route = 1
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Boost"
|
||||
pos = "E1"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Water Screen"
|
||||
pos = "E2"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["W", "E", "N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Cure Boost"
|
||||
pos = "E3"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "F2"
|
||||
type = "Checkpoint"
|
||||
price = "Link x3"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Combo Plus"
|
||||
pos = "G2"
|
||||
type = "Support"
|
||||
price = "200 LP"
|
||||
path = ["W"]
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
spirit = "Toximander"
|
||||
order = 8
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Hunter"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Basilisk"
|
||||
tip = "Tail"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Loose Cannon"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Bane"
|
||||
tip = "Tail"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Basilisk"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Hunter"
|
||||
tip = "Body"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Bane"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Loose Cannon"
|
||||
tip = "Body"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Loose Cannon"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Bane"
|
||||
tip = "Legs"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Hunter"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Basilisk"
|
||||
tip = "Body"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Bane"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Loose Cannon"
|
||||
tip = "Body"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Basilisk"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Hunter"
|
||||
tip = "Body"
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "A3"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Bind Block"
|
||||
pos = "B2"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Poison"
|
||||
pos = "B3"
|
||||
type = "Magic"
|
||||
price = "10 LP"
|
||||
path = ["W", "E", "N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Confusion Block"
|
||||
pos = "B4"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Treasure Magnet"
|
||||
pos = "C1"
|
||||
type = "Support"
|
||||
price = "50 LP"
|
||||
path = ["S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "C2"
|
||||
type = "Checkpoint"
|
||||
price = "Link x2"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blindness Block"
|
||||
pos = "C3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "E", "N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Haste"
|
||||
pos = "C4"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 0
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Boost"
|
||||
pos = "C5"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
route = 0
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
pos = "D2"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Poison Block"
|
||||
pos = "D3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Dark Screen"
|
||||
pos = "D4"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Dark Screen"
|
||||
pos = "E2"
|
||||
type = "Stat"
|
||||
price = "40 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Gravity Strike"
|
||||
pos = "E4"
|
||||
type = "Attack"
|
||||
price = "100 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "F2"
|
||||
type = "Checkpoint"
|
||||
price = "Level 15"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Mini Block"
|
||||
pos = "F4"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Poison Dive"
|
||||
pos = "G2"
|
||||
type = "Attack"
|
||||
price = "200 LP"
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "G4"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 1
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
pos = "H4"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
route = 1
|
||||
path = ["W"]
|
||||
|
|
@ -0,0 +1,228 @@
|
|||
spirit = "Fin Fatale"
|
||||
order = 9
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Grunt"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Water Slinger"
|
||||
tip = "Body"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Charger"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Diver"
|
||||
tip = "Body"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Diver"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Charger"
|
||||
tip = "Body"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Water Slinger"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Grunt"
|
||||
tip = "Body"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Charger"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Diver"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Water Slinger"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Grunt"
|
||||
tip = "Body"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Water Slinger"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Grunt"
|
||||
tip = "Tailfin"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Diver"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Charger"
|
||||
tip = "Tailfin"
|
||||
|
||||
[[routes]]
|
||||
id = 100
|
||||
name = "Secret Route 1"
|
||||
color = "secret1"
|
||||
tips = []
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "A1"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Zero Gravity"
|
||||
pos = "A2"
|
||||
type = "Magic"
|
||||
price = "10 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Haste"
|
||||
pos = "A3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Water Boost"
|
||||
pos = "A4"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Gravity Strike"
|
||||
pos = "A5"
|
||||
type = "Attack"
|
||||
price = "100 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Water Boost"
|
||||
pos = "A6"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
route = 0
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Haste"
|
||||
pos = "A7"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
route = 0
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Water Screen"
|
||||
pos = "B3"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["W", "E", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Haste"
|
||||
pos = "B4"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Secret"
|
||||
pos = "B5"
|
||||
type = "Secret"
|
||||
price = "10 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "B6"
|
||||
type = "Checkpoint"
|
||||
price = "Level 20"
|
||||
route = 100
|
||||
path = ["N", "S"]
|
||||
tip = "Unlocks with Secret panel at B5"
|
||||
|
||||
[[abilities]]
|
||||
name = "Zero Gravira"
|
||||
pos = "B7"
|
||||
type = "Magic"
|
||||
price = "100 LP"
|
||||
route = 100
|
||||
path = ["N", "S"]
|
||||
tip = "Unlocks with Secret panel at B5"
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "B8"
|
||||
type = "Checkpoint"
|
||||
price = "Level 25"
|
||||
route = 100
|
||||
path = ["N", "E"]
|
||||
tip = "Unlocks with Secret panel at B5"
|
||||
|
||||
[[abilities]]
|
||||
name = "Sleep Block"
|
||||
pos = "C3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "E", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Water Boost"
|
||||
pos = "C4"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Slow Block"
|
||||
pos = "C5"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Boost"
|
||||
pos = "C6"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Zero Graviga"
|
||||
pos = "C8"
|
||||
type = "Magic"
|
||||
price = "150 LP"
|
||||
route = 100
|
||||
path = ["W"]
|
||||
tip = "Unlocks with Secret panel at B5"
|
||||
|
||||
[[abilities]]
|
||||
name = "Support Boost"
|
||||
pos = "D2"
|
||||
type = "Spirit"
|
||||
price = "200 LP"
|
||||
route = 1
|
||||
path = ["S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
pos = "D3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 1
|
||||
path = ["N", "W"]
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
spirit = "Tatsu Steed"
|
||||
order = 10
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Tactician"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Scatterbrain"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Show-off"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Trap Jockey"
|
||||
tip = "Arms"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Trap Jockey"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Show-off"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Scatterbrain"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Tactician"
|
||||
tip = "Tail"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Scatterbrain"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Tactician"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Trap Jockey"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Show-off"
|
||||
tip = "Tail"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Show-off"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Trap Jockey"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Tactician"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Scatterbrain"
|
||||
tip = "Arms"
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "A1"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Bind"
|
||||
pos = "A2"
|
||||
type = "Magic"
|
||||
price = "10 LP"
|
||||
path = ["N", "S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Boost"
|
||||
pos = "A3"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Mini"
|
||||
pos = "A4"
|
||||
type = "Magic"
|
||||
price = "100 LP"
|
||||
path = ["N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "A6"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
route = 0
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "B2"
|
||||
type = "Checkpoint"
|
||||
price = "Link x1"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzard Boost"
|
||||
pos = "B4"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Confusion Block"
|
||||
pos = "B5"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["E", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzard Screen"
|
||||
pos = "B6"
|
||||
type = "Stat"
|
||||
price = "60 LP"
|
||||
route = 0
|
||||
path = ["N", "W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzard Screen"
|
||||
pos = "C2"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "C4"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Boost"
|
||||
pos = "C5"
|
||||
type = "Stat"
|
||||
price = "200 LP"
|
||||
path = ["W", "E", "N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzard Screen"
|
||||
pos = "C6"
|
||||
type = "Stat"
|
||||
price = "40 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "C7"
|
||||
type = "Checkpoint"
|
||||
price = "Level 25"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzaga"
|
||||
pos = "C8"
|
||||
type = "Magic"
|
||||
price = "150 LP"
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzara"
|
||||
pos = "D2"
|
||||
type = "Magic"
|
||||
price = "100 LP"
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Bind Block"
|
||||
pos = "D5"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "D6"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
route = 1
|
||||
path = ["N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzard Boost"
|
||||
pos = "E6"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
route = 1
|
||||
path = ["W"]
|
||||
|
|
@ -0,0 +1,200 @@
|
|||
spirit = "Necho Cat"
|
||||
order = 11
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Diva"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Multi-Talent"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Dancer"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Artist"
|
||||
tip = "Body"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Artist"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Dancer"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Multi-Talent"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Diva"
|
||||
tip = "Legs"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Multi-Talent"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Diva"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Artist"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Dancer"
|
||||
tip = "Legs"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Dancer"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Artist"
|
||||
tip = "Legs"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Multi-Talent"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Diva"
|
||||
tip = "Legs"
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Boost"
|
||||
pos = "A4"
|
||||
type = "Stat"
|
||||
price = "200 LP"
|
||||
route = 0
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Support Boost"
|
||||
pos = "B1"
|
||||
type = "Spirit"
|
||||
price = "200 LP"
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
pos = "B3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Confusion Block"
|
||||
pos = "B4"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 0
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Thunder Boost"
|
||||
pos = "B5"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["E", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "B6"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["E", "N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "C1"
|
||||
type = "Checkpoint"
|
||||
price = "Link x3"
|
||||
path = ["W", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Boost"
|
||||
pos = "C2"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["E", "N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Sleepra"
|
||||
pos = "C3"
|
||||
type = "Magic"
|
||||
price = "100 LP"
|
||||
path = ["W", "E", "N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "C4"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["W", "E", "N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Thunder Boost"
|
||||
pos = "C5"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "E", "N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Thunder"
|
||||
pos = "C6"
|
||||
type = "Magic"
|
||||
price = "10 LP"
|
||||
path = ["W", "N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "C7"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Thunder Boost"
|
||||
pos = "D2"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
route = 1
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "D3"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["W", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Time Bomb"
|
||||
pos = "D4"
|
||||
type = "Magic"
|
||||
price = "50 LP"
|
||||
path = ["W", "N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Sleep Block"
|
||||
pos = "D5"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "E2"
|
||||
type = "Stat"
|
||||
price = "150 LP"
|
||||
route = 1
|
||||
path = ["W"]
|
||||
|
|
@ -0,0 +1,222 @@
|
|||
spirit = "Thunderaffe"
|
||||
order = 12
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Live Wire"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Photon Don"
|
||||
tip = "Head or Legs"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Smasher"
|
||||
tip = "Body"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Blue Streak"
|
||||
tip = "Body"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Photon Don"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Live Wire"
|
||||
tip = "Head or Body"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Smasher"
|
||||
tip = "Legs"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Blue Streak"
|
||||
tip = "Legs"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Smasher"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Live Wire"
|
||||
tip = "Body or Legs"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Photon Don"
|
||||
tip = "Body or Legs"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Blue Streak"
|
||||
tip = "Head"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Blue Streak"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Live Wire"
|
||||
tip = "Legs"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Photon Don"
|
||||
tip = "Legs"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Smasher"
|
||||
tip = "Head or Body"
|
||||
|
||||
[[routes]]
|
||||
id = 100
|
||||
name = "Secret Route 1"
|
||||
color = "secret2"
|
||||
tips = []
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "A2"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Thunder Screen"
|
||||
pos = "B1"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Thundara"
|
||||
pos = "B2"
|
||||
type = "Magic"
|
||||
price = "10 LP"
|
||||
path = ["N", "W", "S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "B3"
|
||||
type = "Checkpoint"
|
||||
price = "Link x3"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Damage Syphon"
|
||||
pos = "B4"
|
||||
type = "Support"
|
||||
price = "300 LP"
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Haste"
|
||||
pos = "C1"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Thunder Boost"
|
||||
pos = "C2"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "E", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Thunder Screen"
|
||||
pos = "C3"
|
||||
type = "Stat"
|
||||
price = "60 LP"
|
||||
route = 1
|
||||
path = ["N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "D1"
|
||||
type = "Checkpoint"
|
||||
price = "Link x3"
|
||||
path = ["S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Thundaga / Triple Plasma"
|
||||
pos = "D2"
|
||||
type = "Magic"
|
||||
price = "150 LP"
|
||||
route = 100
|
||||
path = ["W", "E", "N"]
|
||||
tip = "Changes into Triple Plasma with Secret panel at E1"
|
||||
|
||||
[[abilities]]
|
||||
name = "Thunder Boost"
|
||||
pos = "D3"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
route = 1
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Secret"
|
||||
pos = "E1"
|
||||
type = "Secret"
|
||||
price = "50 LP"
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Haste"
|
||||
pos = "E2"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["W", "E", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Slow Block"
|
||||
pos = "E3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Haste"
|
||||
pos = "F1"
|
||||
type = "Stat"
|
||||
price = "150 LP"
|
||||
route = 3
|
||||
path = ["S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Haste"
|
||||
pos = "F2"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["W", "E", "N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Thunder Boost"
|
||||
pos = "F3"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Haste"
|
||||
pos = "G1"
|
||||
type = "Stat"
|
||||
price = "200 LP"
|
||||
route = 3
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "G2"
|
||||
type = "Checkpoint"
|
||||
price = "Level 25"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Zantetsuken"
|
||||
pos = "H2"
|
||||
type = "Attack"
|
||||
price = "200 LP"
|
||||
path = ["W"]
|
||||
|
|
@ -0,0 +1,228 @@
|
|||
spirit = "Kooma Panda"
|
||||
order = 13
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Boxer"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Wrestler"
|
||||
tip = "Head"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Bruiser"
|
||||
tip = "Belly or Back"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Grappler"
|
||||
tip = "Belly or Back"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Wrestler"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Boxer"
|
||||
tip = "Belly"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Bruiser"
|
||||
tip = "Head or Back"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Grappler"
|
||||
tip = "Head or Back"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Bruiser"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Boxer"
|
||||
tip = "Back"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Wrestler"
|
||||
tip = "Back"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Grappler"
|
||||
tip = "Head or Belly"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Grappler"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Boxer"
|
||||
tip = "Head or Back"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Wrestler"
|
||||
tip = "Head or Back"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Bruiser"
|
||||
tip = "Belly and Arms"
|
||||
|
||||
[[routes]]
|
||||
id = 100
|
||||
name = "Secret Route 1"
|
||||
color = "secret1"
|
||||
tips = []
|
||||
|
||||
[[abilities]]
|
||||
name = "Bind Block"
|
||||
pos = "A2"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "A3"
|
||||
type = "Checkpoint"
|
||||
price = "Link x3"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Aerial Slam"
|
||||
pos = "A4"
|
||||
type = "Attack"
|
||||
price = "100 LP"
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Confusion Block"
|
||||
pos = "A5"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 1
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Defense Boost"
|
||||
pos = "A6"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 2
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "B1"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Circle Raid"
|
||||
pos = "B2"
|
||||
type = "Attack"
|
||||
price = "10 LP"
|
||||
path = ["N", "S", "W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Boost"
|
||||
pos = "B3"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blindness Block"
|
||||
pos = "B4"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Item Boost"
|
||||
pos = "B5"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "S", "W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Mini Block"
|
||||
pos = "B6"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "S", "W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Boost"
|
||||
pos = "B7"
|
||||
type = "Stat"
|
||||
price = "200 LP"
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
pos = "C2"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
pos = "C5"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
route = 1
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Haste"
|
||||
pos = "C6"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 2
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Secret"
|
||||
pos = "D2"
|
||||
type = "Secret"
|
||||
price = "10 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Bind"
|
||||
pos = "E2"
|
||||
type = "Magic"
|
||||
price = "50 LP"
|
||||
route = 100
|
||||
path = ["W", "S"]
|
||||
tip = "Unlocks with Secret panel at D2"
|
||||
|
||||
[[abilities]]
|
||||
name = "Item Boost"
|
||||
pos = "E3"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
route = 100
|
||||
path = ["N", "S"]
|
||||
tip = "Unlocks with Secret panel at D2"
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "E4"
|
||||
type = "Checkpoint"
|
||||
price = "Level 20"
|
||||
route = 100
|
||||
path = ["N", "E"]
|
||||
tip = "Unlocks with Secret panel at D2"
|
||||
|
||||
[[abilities]]
|
||||
name = "Combo Plus"
|
||||
pos = "F4"
|
||||
type = "Support"
|
||||
price = "200 LP"
|
||||
route = 100
|
||||
path = ["W"]
|
||||
tip = "Unlocks with Secret panel at D2"
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
spirit = "Pegaslick"
|
||||
order = 14
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Cyclone"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Typhoon"
|
||||
tip = "Body"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Hurricane"
|
||||
tip = "Head"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Stormgoer"
|
||||
tip = "Head"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Typhoon"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Cyclone"
|
||||
tip = "Head"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Hurricane"
|
||||
tip = "Body or Tail"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Stormgoer"
|
||||
tip = "Body or Tail"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Hurricane"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Cyclone"
|
||||
tip = "Tail"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Typhoon"
|
||||
tip = "Tail"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Stormgoer"
|
||||
tip = "Head or Body"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Stormgoer"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Cyclone"
|
||||
tip = "Body or Tail"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Typhoon"
|
||||
tip = "Body or Tail"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Hurricane"
|
||||
tip = "Head"
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "A3"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Prism Windmill"
|
||||
pos = "B3"
|
||||
type = "Attack"
|
||||
price = "10 LP"
|
||||
path = ["W", "S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Defense Boost"
|
||||
pos = "B4"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "B5"
|
||||
type = "Checkpoint"
|
||||
price = "Link x3"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Air Combo Plus"
|
||||
pos = "B6"
|
||||
type = "Support"
|
||||
price = "200 LP"
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Light Screen"
|
||||
pos = "C2"
|
||||
type = "Stat"
|
||||
price = "60 LP"
|
||||
path = ["S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Light Screen"
|
||||
pos = "C3"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["N", "S", "W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Light Screen"
|
||||
pos = "C4"
|
||||
type = "Stat"
|
||||
price = "40 LP"
|
||||
path = ["N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Light Screen"
|
||||
pos = "D1"
|
||||
type = "Stat"
|
||||
price = "80 LP"
|
||||
route = 3
|
||||
path = ["S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "D2"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "D3"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
pos = "D4"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["S", "W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Light Screen"
|
||||
pos = "D5"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
route = 2
|
||||
path = ["N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
pos = "E1"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
route = 3
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Sparkra"
|
||||
pos = "E3"
|
||||
type = "Magic"
|
||||
price = "100 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "E5"
|
||||
type = "Stat"
|
||||
price = "150 LP"
|
||||
route = 2
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "F3"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "G3"
|
||||
type = "Checkpoint"
|
||||
price = "Level 30"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Sparkga"
|
||||
pos = "H3"
|
||||
type = "Magic"
|
||||
price = "250 LP"
|
||||
path = ["W"]
|
||||
|
|
@ -0,0 +1,200 @@
|
|||
spirit = "Iceguin Ace"
|
||||
order = 15
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Skater"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Wingman"
|
||||
tip = "Back"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Slider"
|
||||
tip = "Head or Belly"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Birdbrain"
|
||||
tip = "Head or Belly"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Wingman"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Skater"
|
||||
tip = "Belly"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Slider"
|
||||
tip = "Head or Back"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Birdbrain"
|
||||
tip = "Head or Back"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Slider"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Skater"
|
||||
tip = "Head"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Wingman"
|
||||
tip = "Head"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Birdbrain"
|
||||
tip = "Belly or Back"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Birdbrain"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Skater"
|
||||
tip = "Head or Belly"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Wingman"
|
||||
tip = "Head or Belly"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Slider"
|
||||
tip = "Back"
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "A1"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Icicle Splitter"
|
||||
pos = "B1"
|
||||
type = "Magic"
|
||||
price = "10 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
pos = "B2"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
route = 1
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "C1"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blindness Block"
|
||||
pos = "C2"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 1
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Boost"
|
||||
pos = "D1"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["W", "E", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
pos = "D2"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Stop Block"
|
||||
pos = "D3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzard Boost"
|
||||
pos = "D4"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Boost"
|
||||
pos = "D5"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzard Boost"
|
||||
pos = "E1"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzard Screen"
|
||||
pos = "E2"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["N", "S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzaga"
|
||||
pos = "E3"
|
||||
type = "Magic"
|
||||
price = "150 LP"
|
||||
path = ["N", "S", "W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Cure Boost"
|
||||
pos = "E4"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "E5"
|
||||
type = "Checkpoint"
|
||||
price = "Level 30"
|
||||
path = ["N", "W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzard Screen"
|
||||
pos = "F2"
|
||||
type = "Stat"
|
||||
price = "40 LP"
|
||||
route = 2
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Ice Barrage"
|
||||
pos = "F5"
|
||||
type = "Magic"
|
||||
price = "300 LP"
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzard Boost"
|
||||
pos = "G2"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
route = 2
|
||||
path = ["W"]
|
||||
|
|
@ -0,0 +1,221 @@
|
|||
spirit = "Peepsta Hoo"
|
||||
order = 16
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Watcher"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Sweeper"
|
||||
tip = "Head or Belly"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Scout"
|
||||
tip = "Back"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Patroller"
|
||||
tip = "Back"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Sweeper"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Watcher"
|
||||
tip = "Back"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Scout"
|
||||
tip = "Belly"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Patroller"
|
||||
tip = "Belly"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Scout"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Watcher"
|
||||
tip = "Belly or Back"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Sweeper"
|
||||
tip = "Belly or Back"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Patroller"
|
||||
tip = "Head"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Patroller"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Watcher"
|
||||
tip = "Head"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Sweeper"
|
||||
tip = "Head"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Scout"
|
||||
tip = "Belly or Back"
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "A1"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blackout"
|
||||
pos = "B1"
|
||||
type = "Magic"
|
||||
price = "10 LP"
|
||||
path = ["W", "E", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Bind Block"
|
||||
pos = "B2"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 1
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Boost"
|
||||
pos = "C1"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "E", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Boost"
|
||||
pos = "C2"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["N", "S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blindness Block"
|
||||
pos = "C3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 0
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "D1"
|
||||
type = "Checkpoint"
|
||||
price = "Paint Gun: Red x10"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzard Boost"
|
||||
pos = "D2"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzard Boost"
|
||||
pos = "D3"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["N", "S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Poison Block"
|
||||
pos = "D4"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 2
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fira"
|
||||
pos = "E1"
|
||||
type = "Magic"
|
||||
price = "100 LP"
|
||||
path = ["W", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "E2"
|
||||
type = "Checkpoint"
|
||||
price = "Paint Gun: Blue: x20"
|
||||
path = ["N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Thunder Boost"
|
||||
pos = "E3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Thunder Boost"
|
||||
pos = "E4"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["N", "S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Confusion Block"
|
||||
pos = "E5"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
route = 3
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzara"
|
||||
pos = "F2"
|
||||
type = "Magic"
|
||||
price = "100 LP"
|
||||
path = ["W", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "F3"
|
||||
type = "Checkpoint"
|
||||
price = "Paint Gunt: Yellow x30"
|
||||
path = ["N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Boost"
|
||||
pos = "F4"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["W", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "F5"
|
||||
type = "Checkpoint"
|
||||
price = "Level 20"
|
||||
path = ["N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Thundara"
|
||||
pos = "G3"
|
||||
type = "Magic"
|
||||
price = "100 LP"
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Support Boost"
|
||||
pos = "G5"
|
||||
type = "Spirit"
|
||||
price = "200 LP"
|
||||
path = ["W"]
|
||||
|
|
@ -0,0 +1,200 @@
|
|||
spirit = "Escarglow"
|
||||
order = 17
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Blindsider"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Snail Support"
|
||||
tip = "Head"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Conjurer"
|
||||
tip = "Body or Shell"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Brick Wall"
|
||||
tip = "Body or Shell"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Snail Support"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Blindsider"
|
||||
tip = "Shell"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Conjurer"
|
||||
tip = "Head or Body"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Brick Wall"
|
||||
tip = "Head or Body"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Conjurer"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Blindsider"
|
||||
tip = "Body"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Snail Support"
|
||||
tip = "Body"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Brick Wall"
|
||||
tip = "Head or Shell"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Brick Wall"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Blindsider"
|
||||
tip = "Body or Shell"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Snail Support"
|
||||
tip = "Body or Shell"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Conjurer"
|
||||
tip = "Head"
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "A4"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Screen"
|
||||
pos = "B1"
|
||||
type = "Stat"
|
||||
price = "40 LP"
|
||||
route = 0
|
||||
path = ["S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzard Screen"
|
||||
pos = "B2"
|
||||
type = "Stat"
|
||||
price = "40 LP"
|
||||
route = 0
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Defender"
|
||||
pos = "B3"
|
||||
type = "Stat"
|
||||
price = "150 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Slow"
|
||||
pos = "B4"
|
||||
type = "Magic"
|
||||
price = "10 LP"
|
||||
path = ["N", "S", "W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "B5"
|
||||
type = "Checkpoint"
|
||||
price = "Link x3"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Second Chance"
|
||||
pos = "B6"
|
||||
type = "Support"
|
||||
price = "200 LP"
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Thunder Screen"
|
||||
pos = "C2"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Water Screen"
|
||||
pos = "C3"
|
||||
type = "Stat"
|
||||
price = "40 LP"
|
||||
path = ["N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Defense Boost"
|
||||
pos = "C4"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Water Screen"
|
||||
pos = "D2"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Defense Boost"
|
||||
pos = "D3"
|
||||
type = "Stat"
|
||||
price = "200 LP"
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Screen"
|
||||
pos = "D4"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzard Screen"
|
||||
pos = "E2"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["W", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Item Boost"
|
||||
pos = "E3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Light Screen"
|
||||
pos = "E4"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["W", "E", "N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Item Boost"
|
||||
pos = "F3"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
route = 1
|
||||
path = ["S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Dark Screen"
|
||||
pos = "F4"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
route = 1
|
||||
path = ["W", "N"]
|
||||
|
|
@ -0,0 +1,228 @@
|
|||
spirit = "KO Kabuto"
|
||||
order = 18
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Tank"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Grenadier"
|
||||
tip = "Belly or Back"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Bodyguard"
|
||||
tip = "Head"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Launcher"
|
||||
tip = "Head"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Grenadier"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Tank"
|
||||
tip = "Head or Back"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Bodyguard"
|
||||
tip = "Belly"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Launcher"
|
||||
tip = "Belly"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Bodyguard"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Tank"
|
||||
tip = "Head or Belly"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Grenadier"
|
||||
tip = "Head or Belly"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Launcher"
|
||||
tip = "Back"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Launcher"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Tank"
|
||||
tip = "Belly"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Grenadier"
|
||||
tip = "Belly"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Bodyguard"
|
||||
tip = "Head or Back"
|
||||
|
||||
[[routes]]
|
||||
id = 100
|
||||
name = "Secret Route 1"
|
||||
color = "secret1"
|
||||
tips = []
|
||||
|
||||
[[abilities]]
|
||||
name = "Reload Boost"
|
||||
pos = "A2"
|
||||
type = "Stat"
|
||||
price = "150 LP"
|
||||
path = ["S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Secret"
|
||||
pos = "A3"
|
||||
type = "Secret"
|
||||
price = "10 LP"
|
||||
path = ["N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Defense Boost"
|
||||
pos = "A4"
|
||||
type = "Stat"
|
||||
price = "200 LP"
|
||||
route = 1
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "B2"
|
||||
type = "Checkpoint"
|
||||
price = "Link x3"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Thunder Screen"
|
||||
pos = "B3"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
route = 100
|
||||
path = ["W", "S"]
|
||||
tip = "Unlocks with Secret panel at A3"
|
||||
|
||||
[[abilities]]
|
||||
name = "Thunder Screen"
|
||||
pos = "B4"
|
||||
type = "Stat"
|
||||
price = "40 LP"
|
||||
route = 100
|
||||
path = ["W", "N", "S"]
|
||||
tip = "Unlocks with Secret panel at A3"
|
||||
|
||||
[[abilities]]
|
||||
name = "Thunder Screen"
|
||||
pos = "B5"
|
||||
type = "Stat"
|
||||
price = "60 LP"
|
||||
route = 100
|
||||
path = ["N", "S"]
|
||||
tip = "Unlocks with Secret panel at A3"
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "B6"
|
||||
type = "Checkpoint"
|
||||
price = "Level 20"
|
||||
route = 100
|
||||
path = ["N", "S"]
|
||||
tip = "Unlocks with Secret panel at A3"
|
||||
|
||||
[[abilities]]
|
||||
name = "Icebreaker"
|
||||
pos = "B7"
|
||||
type = "Attack"
|
||||
price = "100 LP"
|
||||
route = 100
|
||||
path = ["N"]
|
||||
tip = "Unlocks with Secret panel at A3"
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "C1"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Link Block"
|
||||
pos = "C2"
|
||||
type = "Defense"
|
||||
price = "10 LP"
|
||||
path = ["W", "N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Screen"
|
||||
pos = "C3"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["N", "S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fire Screen"
|
||||
pos = "C4"
|
||||
type = "Stat"
|
||||
price = "40 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Defense Boost"
|
||||
pos = "C5"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Circle Raid"
|
||||
pos = "C6"
|
||||
type = "Attack"
|
||||
price = "100 LP"
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Fira"
|
||||
pos = "D3"
|
||||
type = "Magic"
|
||||
price = "100 LP"
|
||||
path = ["S", "W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzard Screen"
|
||||
pos = "D4"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["N", "S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzard Screen"
|
||||
pos = "D5"
|
||||
type = "Stat"
|
||||
price = "40 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzard Screen"
|
||||
pos = "D6"
|
||||
type = "Stat"
|
||||
price = "60 LP"
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Defense Boost"
|
||||
pos = "E4"
|
||||
type = "Stat"
|
||||
price = "200 LP"
|
||||
route = 2
|
||||
path = ["W"]
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
spirit = "Wheeflower"
|
||||
order = 19
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Keeper"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Multi-Tasker"
|
||||
tip = "Leaves or Bulb"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Spell Slinger"
|
||||
tip = "Head"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Green Thumb"
|
||||
tip = "Head"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Multi-Tasker"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Keeper"
|
||||
tip = "Head or Bulb"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Spell Slinger"
|
||||
tip = "Leaves"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Green Thumb"
|
||||
tip = "Leaves"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Spell Slinger"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Keeper"
|
||||
tip = "Head or Leaves"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Multi-Tasker"
|
||||
tip = "Head or Leaves"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Green Thumb"
|
||||
tip = "Bulb"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Green Thumb"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Keeper"
|
||||
tip = "Bulb"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Multi-Tasker"
|
||||
tip = "Bulb"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Spell Slinger"
|
||||
tip = "Head or Leaves"
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "A3"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
route = 1
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Water Screen"
|
||||
pos = "B3"
|
||||
type = "Stat"
|
||||
price = "60 LP"
|
||||
route = 1
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzara"
|
||||
pos = "B5"
|
||||
type = "Magic"
|
||||
price = "100 LP"
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Boost"
|
||||
pos = "C3"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "C5"
|
||||
type = "Checkpoint"
|
||||
price = "Level 10"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Cure Boost"
|
||||
pos = "C7"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "D1"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzard"
|
||||
pos = "D2"
|
||||
type = "Magic"
|
||||
price = "10 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "D3"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "S", "W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Water Screen"
|
||||
pos = "D4"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["N", "S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Esuna"
|
||||
pos = "D5"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["N", "S", "W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Sleep Block"
|
||||
pos = "D6"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Water Screen"
|
||||
pos = "D7"
|
||||
type = "Stat"
|
||||
price = "40 LP"
|
||||
path = ["N", "W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Bind Block"
|
||||
pos = "E4"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "E6"
|
||||
type = "Checkpoint"
|
||||
price = "Level 20"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "HP Boost"
|
||||
pos = "E7"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Cure Boost"
|
||||
pos = "F4"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
route = 2
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blizzaga"
|
||||
pos = "F6"
|
||||
type = "Magic"
|
||||
price = "150 LP"
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Boost"
|
||||
pos = "G4"
|
||||
type = "Stat"
|
||||
price = "200 LP"
|
||||
route = 2
|
||||
path = ["W"]
|
||||
|
|
@ -0,0 +1,207 @@
|
|||
spirit = "Ghostabocky"
|
||||
order = 20
|
||||
|
||||
[[routes]]
|
||||
id = 0
|
||||
name = "Big Eater"
|
||||
color = "purple"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Phantom"
|
||||
tip = "Hat or Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Shaman"
|
||||
tip = "Back"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Split Personality"
|
||||
tip = "Back"
|
||||
|
||||
[[routes]]
|
||||
id = 1
|
||||
name = "Phantom"
|
||||
color = "yellow"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Big Eater"
|
||||
tip = "Hat or Back"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Shaman"
|
||||
tip = "Face"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Split Personality"
|
||||
tip = "Face"
|
||||
|
||||
[[routes]]
|
||||
id = 2
|
||||
name = "Shaman"
|
||||
color = "blue"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Big Eater"
|
||||
tip = "Face or Back"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Phantom"
|
||||
tip = "Face or Back"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Split Personality"
|
||||
tip = "Hat"
|
||||
|
||||
[[routes]]
|
||||
id = 3
|
||||
name = "Split Personality"
|
||||
color = "green"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Big Eater"
|
||||
tip = "Hat"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Phantom"
|
||||
tip = "Hat"
|
||||
|
||||
[[routes.tips]]
|
||||
to = "Shaman"
|
||||
tip = "Face or Back"
|
||||
|
||||
[[abilities]]
|
||||
name = "Start"
|
||||
pos = "A1"
|
||||
type = "Start"
|
||||
price = ""
|
||||
path = ["E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Zero Gravira"
|
||||
pos = "B1"
|
||||
type = "Magic"
|
||||
price = "10 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Attack Boost"
|
||||
pos = "C1"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["W", "E", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Dark Screen"
|
||||
pos = "C2"
|
||||
type = "Stat"
|
||||
price = "20 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "C3"
|
||||
type = "Stat"
|
||||
price = "50 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Boost"
|
||||
pos = "C4"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
path = ["N", "S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Dark Screen"
|
||||
pos = "C5"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
route = 1
|
||||
path = ["N", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "D1"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "D2"
|
||||
type = "Checkpoint"
|
||||
price = "Link x1"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Treasure Magnet"
|
||||
pos = "D3"
|
||||
type = "Support"
|
||||
price = "50 LP"
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Blindness Block"
|
||||
pos = "D4"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["W", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Magic Haste"
|
||||
pos = "D5"
|
||||
type = "Stat"
|
||||
price = "100 LP"
|
||||
route = 1
|
||||
path = ["W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Dark Screen"
|
||||
pos = "E1"
|
||||
type = "Stat"
|
||||
price = "40 LP"
|
||||
path = ["W", "S", "E"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Slow Block"
|
||||
pos = "E2"
|
||||
type = "Stat"
|
||||
price = "30 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Dark Screen"
|
||||
pos = "E3"
|
||||
type = "Stat"
|
||||
price = "60 LP"
|
||||
path = ["N", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Checkpoint"
|
||||
pos = "E4"
|
||||
type = "Checkpoint"
|
||||
price = "Level 20"
|
||||
path = ["N", "S", "W"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Dark Aura"
|
||||
pos = "E5"
|
||||
type = "Attack"
|
||||
price = "400 LP"
|
||||
path = ["N"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Dark Screen"
|
||||
pos = "F1"
|
||||
type = "Stat"
|
||||
price = "80 LP"
|
||||
route = 3
|
||||
path = ["W", "S"]
|
||||
|
||||
[[abilities]]
|
||||
name = "Vanish"
|
||||
pos = "F2"
|
||||
type = "Magic"
|
||||
price = "300 LP"
|
||||
route = 3
|
||||
path = ["N"]
|
||||
|
|
@ -0,0 +1,483 @@
|
|||
[[sets]]
|
||||
id = 1
|
||||
name = "List I"
|
||||
|
||||
[[sets]]
|
||||
id = 2
|
||||
name = "List II"
|
||||
requirement = "Create four unique items"
|
||||
|
||||
[[sets]]
|
||||
id = 3
|
||||
name = "List III"
|
||||
requirement = "Create ten unique items"
|
||||
|
||||
[[sets]]
|
||||
id = 4
|
||||
name = "List IV"
|
||||
requirement = "Create fifteen unique items"
|
||||
|
||||
[[sets]]
|
||||
id = 5
|
||||
name = "List V"
|
||||
requirement = "Create all items so far"
|
||||
|
||||
[[recipes]]
|
||||
result = "Cottage"
|
||||
set = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Shard"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Blaze Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes]]
|
||||
result = "Elixir"
|
||||
set = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Blaze Shard"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Frost Shard"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Thunder Shard"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mythril Shard"
|
||||
amount = 4
|
||||
|
||||
[[recipes]]
|
||||
result = "Energy Bangle"
|
||||
set = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Shard"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Frost Shard"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Power Chain"
|
||||
set = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Spirit Shard"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Shard"
|
||||
amount = 2
|
||||
|
||||
[[recipes]]
|
||||
result = "Guard Earring"
|
||||
set = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Spirit Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Thunder Shard"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Dark Ring"
|
||||
set = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Shard"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Shard"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mythril Shard"
|
||||
amount = 2
|
||||
|
||||
[[recipes]]
|
||||
result = "Mega-Potion"
|
||||
set = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Blaze Gem"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Frost Gem"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Thunder Gem"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mythril Shard"
|
||||
amount = 2
|
||||
|
||||
[[recipes]]
|
||||
result = "AP Up"
|
||||
set = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Spirit Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Spirit Gem"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mythril"
|
||||
amount = 3
|
||||
|
||||
[[recipes]]
|
||||
result = "Angel Bangle"
|
||||
set = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Spirit Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes]]
|
||||
result = "Magic Armlet"
|
||||
set = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Blaze Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Frost Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Thunder Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mythril"
|
||||
amount = 2
|
||||
|
||||
[[recipes]]
|
||||
result = "Golem Chain"
|
||||
set = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Gem"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Gem"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Master Earring"
|
||||
set = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Gem"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Spirit Gem"
|
||||
amount = 2
|
||||
|
||||
[[recipes]]
|
||||
result = "Mega-Ether"
|
||||
set = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Blaze Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Frost Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Thunder Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Gem"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Crystal"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Defense Up"
|
||||
set = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Shard"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Crystal"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mystery Goo"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Gaia Bangle"
|
||||
set = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Shard"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Crystal"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Rune Armlet"
|
||||
set = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Blaze Gem"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Frost Gem"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Thunder Gem"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mythril"
|
||||
amount = 3
|
||||
|
||||
[[recipes]]
|
||||
result = "Heartguard"
|
||||
set = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Spirit Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Crystal"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Three Stars"
|
||||
set = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Blaze Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Frost Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Thunder Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Orichalcum"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Shiny Crystal"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Megalixir"
|
||||
set = 4
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Shard"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Crystal"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Shiny Crystal"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Gale"
|
||||
amount = 2
|
||||
|
||||
[[recipes]]
|
||||
result = "Power Up"
|
||||
set = 4
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Shard"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Crystal"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mystery Goo"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Orichalcum"
|
||||
amount = 2
|
||||
|
||||
[[recipes]]
|
||||
result = "Titan Chain"
|
||||
set = 4
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Spirit Shard"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Spirit Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Crystal"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Atlas Armlet"
|
||||
set = 4
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Shiny Crystal"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mystery Goo"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Orichalcum"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Gale"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Crystal Crown"
|
||||
set = 4
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Crystal"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Crystal"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Shiny Crystal"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Crystal"
|
||||
amount = 3
|
||||
|
||||
[[recipes]]
|
||||
result = "Ribbon"
|
||||
set = 4
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Blaze Gem"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Frost Gem"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Thunder Gem"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Gem"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Gale"
|
||||
amount = 3
|
||||
|
||||
[[recipes]]
|
||||
result = "Ultima Weapon"
|
||||
set = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Gem"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Gem"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Thunder Gem"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mystery Goo"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Gale"
|
||||
amount = 3
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
name = "Air Pirate"
|
||||
|
||||
[[world]]
|
||||
name = "Neverland"
|
||||
rooms = ["Pirate Ship"]
|
||||
|
||||
[[drops]]
|
||||
name = "Hi-Potion"
|
||||
kind = "item"
|
||||
chance = 2
|
||||
|
||||
[[drops]]
|
||||
name = "Mega-Potion"
|
||||
kind = "item"
|
||||
chance = 1
|
||||
|
||||
[[drops]]
|
||||
name = "Power Gem"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "power"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
name = "Air Soldier"
|
||||
|
||||
[[world]]
|
||||
name = "Wonderland"
|
||||
rooms = ["Lotus Forest"]
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Olympus Coliseum"]
|
||||
|
||||
[[drops]]
|
||||
name = "Potion"
|
||||
kind = "item"
|
||||
chance = 2
|
||||
|
||||
[[drops]]
|
||||
name = "Hi-Potion"
|
||||
kind = "item"
|
||||
chance = 1
|
||||
|
||||
[[drops]]
|
||||
name = "Spirit Gem"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "spirit"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
name = "Angel Star"
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["Linked Worlds"]
|
||||
|
||||
[[drops]]
|
||||
name = "Ether"
|
||||
kind = "item"
|
||||
chance = 2
|
||||
|
||||
[[drops]]
|
||||
name = "Gale"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "stormy"
|
||||
kind = "crystal"
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
name = "Aquatank"
|
||||
|
||||
[[world]]
|
||||
name = "Atlantica"
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Atlantica"]
|
||||
|
||||
[[drops]]
|
||||
name = "Mega-Potion"
|
||||
kind = "item"
|
||||
chance = 4
|
||||
|
||||
[[drops]]
|
||||
name = "Thunder Gem"
|
||||
kind = "material"
|
||||
chance = 8
|
||||
|
||||
[drops.material]
|
||||
category = "thunder"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
name = "Bandit"
|
||||
|
||||
[[world]]
|
||||
name = "Agrabah"
|
||||
rooms = ["Desert: Cave", "Treasure Room", "Lamp Chamber"]
|
||||
|
||||
[[world]]
|
||||
name = "Monstro"
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Agrabah"]
|
||||
|
||||
[[drops]]
|
||||
name = "Potion"
|
||||
kind = "item"
|
||||
chance = 2
|
||||
|
||||
[[drops]]
|
||||
name = "Blaze Gem"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "blaze"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
name = "Barrel Spider"
|
||||
|
||||
[[world]]
|
||||
name = "Monstro"
|
||||
|
||||
[[world]]
|
||||
name = "Neverland"
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Neverland"]
|
||||
|
||||
[[drops]]
|
||||
name = "Camping Set"
|
||||
kind = "item"
|
||||
chance = 1
|
||||
|
||||
[[drops]]
|
||||
name = "Cottage"
|
||||
kind = "item"
|
||||
chance = 0.5
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
name = "Battleship"
|
||||
|
||||
[[world]]
|
||||
name = "Neverland"
|
||||
rooms = ["Pirate Ship"]
|
||||
|
||||
[[drops]]
|
||||
name = "Elixir"
|
||||
kind = "item"
|
||||
chance = 0.5
|
||||
|
||||
[[drops]]
|
||||
name = "Elixir"
|
||||
kind = "item"
|
||||
chance = 1
|
||||
info = "Destroy the Stern, Cannons or Mast"
|
||||
|
||||
[[drops]]
|
||||
name = "Power Gem"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "power"
|
||||
kind = "gem"
|
||||
|
||||
[[drops]]
|
||||
name = "Power Gem"
|
||||
kind = "material"
|
||||
chance = 8
|
||||
info = "Destroy the Stern, Cannons or Mast"
|
||||
|
||||
[drops.material]
|
||||
category = "power"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
name = "Black Ballade"
|
||||
|
||||
[[world]]
|
||||
name = "Deep Jungle"
|
||||
rooms = ["Bamboo Thicket"]
|
||||
|
||||
[[drops]]
|
||||
name = "Lightning Stone"
|
||||
kind = "material"
|
||||
chance = 100
|
||||
info = "After correctly hitting the enemy 4 times"
|
||||
|
||||
[drops.material]
|
||||
category = "lightning"
|
||||
kind = "stone"
|
||||
|
||||
[[drops]]
|
||||
name = "Lightning Stone"
|
||||
kind = "material"
|
||||
chance = 10
|
||||
info = "Additional chance when hitting the enemy"
|
||||
|
||||
[drops.material]
|
||||
category = "lightning"
|
||||
kind = "stone"
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
name = "Blue Rhapsody"
|
||||
|
||||
[[world]]
|
||||
name = "Traverse Town"
|
||||
|
||||
[[world]]
|
||||
name = "Wonderland"
|
||||
rooms = ["Lotus Forest"]
|
||||
|
||||
[[world]]
|
||||
name = "Monstro"
|
||||
|
||||
[[world]]
|
||||
name = "Hollow Bastion"
|
||||
rooms = ["Entrance Hall"]
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Wonderland"]
|
||||
|
||||
[[drops]]
|
||||
name = "Ether"
|
||||
kind = "item"
|
||||
chance = 1
|
||||
|
||||
[[drops]]
|
||||
name = "Frost Shard"
|
||||
kind = "material"
|
||||
chance = 12
|
||||
|
||||
[drops.material]
|
||||
category = "frost"
|
||||
kind = "shard"
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
name = "Bouncywild"
|
||||
|
||||
[[world]]
|
||||
name = "Deep Jungle"
|
||||
|
||||
[[world]]
|
||||
name = "Monstro"
|
||||
rooms = ["Bowels", "Stomach"]
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Deep Jungle"]
|
||||
|
||||
[[drops]]
|
||||
name = "Hi-Potion"
|
||||
kind = "item"
|
||||
chance = 2
|
||||
|
||||
[[drops]]
|
||||
name = "Power Shard"
|
||||
kind = "material"
|
||||
chance = 8
|
||||
|
||||
[drops.material]
|
||||
category = "power"
|
||||
kind = "shard"
|
||||
|
||||
[[drops]]
|
||||
name = "Ether"
|
||||
kind = "item"
|
||||
chance = 20
|
||||
info = "When it slips on the banana peel"
|
||||
|
||||
[[drops]]
|
||||
name = "Mega-Ether"
|
||||
kind = "item"
|
||||
chance = 4
|
||||
info = "When it slips on the banana peel"
|
||||
|
||||
[[drops]]
|
||||
name = "Power Shard"
|
||||
kind = "material"
|
||||
chance = 8
|
||||
info = "When it slips on the banana peel"
|
||||
|
||||
[drops.material]
|
||||
category = "power"
|
||||
kind = "shard"
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
name = "Chimera"
|
||||
|
||||
[[world]]
|
||||
name = "Halloween Town"
|
||||
rooms = ["Manor Ruins"]
|
||||
|
||||
[[drops]]
|
||||
name = "Blazing Stone"
|
||||
kind = "material"
|
||||
chance = 35
|
||||
|
||||
[drops.material]
|
||||
category = "blaze"
|
||||
kind = "stone"
|
||||
|
||||
[[drops]]
|
||||
name = "Blazing Stone"
|
||||
kind = "material"
|
||||
chance = "?"
|
||||
info = "Additional chance based on how many times the heads get reflected"
|
||||
|
||||
[drops.material]
|
||||
category = "blaze"
|
||||
kind = "stone"
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
name = "Darkball"
|
||||
|
||||
[[world]]
|
||||
name = "Traverse Town"
|
||||
rooms = ["3rd District", "Gizmo Shop", "Alleyway"]
|
||||
|
||||
[[world]]
|
||||
name = "Agrabah"
|
||||
rooms = ["Bazaar", "Palace Gates"]
|
||||
|
||||
[[world]]
|
||||
name = "Deep Jungle"
|
||||
rooms = ["Bamboo Thicket"]
|
||||
|
||||
[[world]]
|
||||
name = "Wonderland"
|
||||
rooms = ["Lotus Forest"]
|
||||
|
||||
[[world]]
|
||||
name = "Halloween Town"
|
||||
rooms = ["Moonlight Hill"]
|
||||
|
||||
[[world]]
|
||||
name = "Hollow Bastion"
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
|
||||
[[world]]
|
||||
name = "Neverland"
|
||||
rooms = ["Ship: Freezer", "Captain's Cabin"]
|
||||
|
||||
[[drops]]
|
||||
name = "Hi-Potion"
|
||||
kind = "item"
|
||||
chance = 1
|
||||
|
||||
[[drops]]
|
||||
name = "Lucid Crystal"
|
||||
kind = "material"
|
||||
chance = 1
|
||||
|
||||
[drops.material]
|
||||
category = "lucid"
|
||||
kind = "crystal"
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
name = "Defender"
|
||||
|
||||
[[world]]
|
||||
name = "Traverse Town"
|
||||
rooms = ["3rd District", "Hotel Hallway", "Gizmo Shop"]
|
||||
|
||||
[[world]]
|
||||
name = "Hollow Bastion"
|
||||
rooms = ["Entrance Hall"]
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Olympus Coliseum"]
|
||||
|
||||
[[drops]]
|
||||
name = "Elixir"
|
||||
kind = "item"
|
||||
chance = 1
|
||||
|
||||
[[drops]]
|
||||
name = "Bright Crystal"
|
||||
kind = "material"
|
||||
chance = 2
|
||||
|
||||
[drops.material]
|
||||
category = "bright"
|
||||
kind = "crystal"
|
||||
|
||||
[[drops]]
|
||||
name = "Defender"
|
||||
kind = "equipment"
|
||||
chance = 0.2
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
name = "Fat Bandit"
|
||||
|
||||
[[world]]
|
||||
name = "Agrabah"
|
||||
|
||||
[[world]]
|
||||
name = "Monstro"
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Agrabah"]
|
||||
|
||||
[[drops]]
|
||||
name = "Hi-Potion"
|
||||
kind = "item"
|
||||
chance = 4
|
||||
|
||||
[[drops]]
|
||||
name = "Blaze Gem"
|
||||
kind = "material"
|
||||
chance = 8
|
||||
|
||||
[drops.material]
|
||||
category = "blaze"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
name = "Gargoyle"
|
||||
|
||||
[[world]]
|
||||
name = "Halloween Town"
|
||||
rooms = ["Graveyard"]
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Halloween Town"]
|
||||
|
||||
[[drops]]
|
||||
name = "Ether"
|
||||
kind = "item"
|
||||
chance = 1
|
||||
|
||||
[[drops]]
|
||||
name = "Mega-Ether"
|
||||
kind = "item"
|
||||
chance = 0.5
|
||||
|
||||
[[drops]]
|
||||
name = "Lucid Gem"
|
||||
kind = "material"
|
||||
chance = 2
|
||||
|
||||
[drops.material]
|
||||
category = "lucid"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
name = "Gigas Shadow"
|
||||
|
||||
[[world]]
|
||||
name = "Wonderland"
|
||||
rooms = ["Bizzare Room"]
|
||||
|
||||
[[drops]]
|
||||
name = "Lucid Shard"
|
||||
kind = "material"
|
||||
chance = "10-100"
|
||||
info = "Chance based on how many Gigas Shadows get defeated"
|
||||
|
||||
[drops.material]
|
||||
category = "lucid"
|
||||
kind = "shard"
|
||||
|
||||
[[drops]]
|
||||
name = "Fury Stone"
|
||||
kind = "material"
|
||||
chance = "10-100"
|
||||
info = "Chance based on how many Gigas Shadows get defeated\nif 2 or less get defeated then no fury stone will drop"
|
||||
|
||||
[drops.material]
|
||||
category = "spirit"
|
||||
kind = "stone"
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
name = "Grand Ghost"
|
||||
|
||||
[[world]]
|
||||
name = "Monstro"
|
||||
|
||||
[[drops]]
|
||||
name = "Frost Stone"
|
||||
kind = "material"
|
||||
chance = 100
|
||||
|
||||
[drops.material]
|
||||
category = "frost"
|
||||
kind = "stone"
|
||||
|
||||
[[drops]]
|
||||
name = "Frost Stone"
|
||||
kind = "material"
|
||||
chance = "?"
|
||||
info = "Additional chances based on what item was used to defeat it\nMega-Potion 5%\nMega-Ether 10%\nElixirs 35%\nMegalixir 100% and 20%"
|
||||
|
||||
[drops.material]
|
||||
category = "frost"
|
||||
kind = "stone"
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
name = "Green Requiem"
|
||||
|
||||
[[world]]
|
||||
name = "Traverse Town"
|
||||
|
||||
[[world]]
|
||||
name = "Agrabah"
|
||||
|
||||
[[world]]
|
||||
name = "Monstro"
|
||||
|
||||
[[world]]
|
||||
name = "Deep Jungle"
|
||||
rooms = ["Cliff"]
|
||||
|
||||
[[world]]
|
||||
name = "Hollow Bastion"
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Wonderland"]
|
||||
|
||||
[[drops]]
|
||||
name = "Ether"
|
||||
kind = "item"
|
||||
chance = 4
|
||||
|
||||
[[drops]]
|
||||
name = "Bright Shard"
|
||||
kind = "material"
|
||||
chance = 10
|
||||
|
||||
[drops.material]
|
||||
category = "bright"
|
||||
kind = "shard"
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
name = "Invisible"
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["Linked Worlds"]
|
||||
|
||||
[[drops]]
|
||||
name = "Hi-Potion"
|
||||
kind = "item"
|
||||
chance = 2
|
||||
|
||||
[[drops]]
|
||||
name = "Gale"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "stormy"
|
||||
kind = "crystal"
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
name = "Jet Balloon"
|
||||
|
||||
[[world]]
|
||||
name = "Neverland"
|
||||
rooms = ["Pirate Ship"]
|
||||
|
||||
[[drops]]
|
||||
name = "Dazzling Stone"
|
||||
kind = "material"
|
||||
chance = 100
|
||||
|
||||
[drops.material]
|
||||
category = "shiny"
|
||||
kind = "stone"
|
||||
|
||||
[[drops]]
|
||||
name = "Dazzling Stone"
|
||||
kind = "material"
|
||||
chance = 20
|
||||
|
||||
[drops.material]
|
||||
category = "shiny"
|
||||
kind = "stone"
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
name = "Large Body"
|
||||
|
||||
[[world]]
|
||||
name = "Traverse Town"
|
||||
|
||||
[[world]]
|
||||
name = "Wonderland"
|
||||
|
||||
[[world]]
|
||||
name = "Agrabah"
|
||||
marked = true
|
||||
|
||||
[[world]]
|
||||
name = "Monstro"
|
||||
|
||||
[[world]]
|
||||
name = "Hollow Bastion"
|
||||
rooms = ["Entrance Hall", "Grand Hall"]
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Traverse Town"]
|
||||
|
||||
[[drops]]
|
||||
name = "Hi-Potion"
|
||||
kind = "item"
|
||||
chance = 4
|
||||
|
||||
[[drops]]
|
||||
name = "Spirit Shard"
|
||||
kind = "material"
|
||||
chance = 10
|
||||
|
||||
[drops.material]
|
||||
category = "spirit"
|
||||
kind = "shard"
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
name = "Neoshadow"
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["Linked Worlds"]
|
||||
|
||||
[[drops]]
|
||||
name = "Stormy Stone"
|
||||
kind = "material"
|
||||
chance = 35
|
||||
info = "Only when all 7 Neoshadows get defeated"
|
||||
|
||||
[drops.material]
|
||||
category = "stormy"
|
||||
kind = "stone"
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
name = "Pink Agaricus"
|
||||
|
||||
[[world]]
|
||||
name = "Deep Jungle"
|
||||
|
||||
[[world]]
|
||||
name = "Atlantica"
|
||||
|
||||
[[drops]]
|
||||
name = "Serenity Power"
|
||||
kind = "material"
|
||||
chance = "?"
|
||||
info = "% based on the number of hits dealt from 40 hits being 10% and 100 hits being 100%"
|
||||
|
||||
[drops.material]
|
||||
category = "mystery"
|
||||
kind = "stone"
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
name = "Pirate"
|
||||
|
||||
[[world]]
|
||||
name = "Neverland"
|
||||
rooms = ["Captain's Cabin"]
|
||||
|
||||
[[world]]
|
||||
name = "Monstro"
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Neverland"]
|
||||
|
||||
[[drops]]
|
||||
name = "Hi-Potion"
|
||||
kind = "item"
|
||||
chance = 2
|
||||
|
||||
[[drops]]
|
||||
name = "Mega-Potion"
|
||||
kind = "item"
|
||||
chance = 1
|
||||
|
||||
[[drops]]
|
||||
name = "Power Gem"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "power"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
name = "Pot Scorpion"
|
||||
|
||||
[[world]]
|
||||
name = "Agrabah"
|
||||
|
||||
[[drops]]
|
||||
name = "Mythril Stone"
|
||||
kind = "material"
|
||||
chance = 20
|
||||
|
||||
[drops.material]
|
||||
category = "mythril"
|
||||
kind = "stone"
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
name = "Pot Spider"
|
||||
|
||||
[[world]]
|
||||
name = "Agrabah"
|
||||
|
||||
[[world]]
|
||||
name = "Monstro"
|
||||
|
||||
[[drops]]
|
||||
name = "Tent"
|
||||
kind = "item"
|
||||
chance = 1
|
||||
|
||||
[[drops]]
|
||||
name = "Camping Set"
|
||||
kind = "item"
|
||||
chance = 0.5
|
||||
|
||||
[[drops]]
|
||||
name = "Mythril Shard"
|
||||
kind = "material"
|
||||
chance = 1
|
||||
|
||||
[drops.material]
|
||||
category = "mythril"
|
||||
kind = "shard"
|
||||
|
|
@ -0,0 +1,49 @@
|
|||
name = "Powerwild"
|
||||
|
||||
[[world]]
|
||||
name = "Deep Jungle"
|
||||
rooms = ["Camp", "Cliff"]
|
||||
|
||||
[[world]]
|
||||
name = "Monstro"
|
||||
rooms = ["Chamber 5", "Chamber 6"]
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Deep Jungle"]
|
||||
|
||||
[[drops]]
|
||||
name = "Potion"
|
||||
kind = "item"
|
||||
chance = 2
|
||||
|
||||
[[drops]]
|
||||
name = "Power Shard"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "power"
|
||||
kind = "shard"
|
||||
|
||||
[[drops]]
|
||||
name = "Ether"
|
||||
kind = "item"
|
||||
chance = 20
|
||||
info = "When it slips on the banana peel"
|
||||
|
||||
[[drops]]
|
||||
name = "Mega-Ether"
|
||||
kind = "item"
|
||||
chance = 4
|
||||
info = "When it slips on the banana peel"
|
||||
|
||||
[[drops]]
|
||||
name = "Power Shard"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
info = "When it slips on the banana peel"
|
||||
|
||||
[drops.material]
|
||||
category = "power"
|
||||
kind = "shard"
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
name = "Red Nocturne"
|
||||
|
||||
[[world]]
|
||||
name = "Monstro"
|
||||
rooms = ["Chamber 6"]
|
||||
|
||||
[[world]]
|
||||
name = "Hollow Bastion"
|
||||
rooms = ["Castle Gates"]
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Wonderland"]
|
||||
|
||||
[[drops]]
|
||||
name = "Ether"
|
||||
kind = "item"
|
||||
chance = 1
|
||||
|
||||
[[drops]]
|
||||
name = "Blaze Shard"
|
||||
kind = "material"
|
||||
chance = 6
|
||||
|
||||
[drops.material]
|
||||
category = "blaze"
|
||||
kind = "shard"
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
name = "Screwdiver"
|
||||
|
||||
[[world]]
|
||||
name = "Atlantica"
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Atlantica"]
|
||||
|
||||
[[drops]]
|
||||
name = "Hi-Potion"
|
||||
kind = "item"
|
||||
chance = 2
|
||||
|
||||
[[drops]]
|
||||
name = "Thunder Gem"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "thunder"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
name = "Sea Neon"
|
||||
|
||||
[[world]]
|
||||
name = "Atlantica"
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Atlantica"]
|
||||
|
||||
[[drops]]
|
||||
name = "Ether"
|
||||
kind = "item"
|
||||
chance = 0.5
|
||||
|
||||
[[drops]]
|
||||
name = "Frost Gem"
|
||||
kind = "material"
|
||||
chance = 2
|
||||
|
||||
[drops.material]
|
||||
category = "frost"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
name = "Search Ghost"
|
||||
|
||||
[[world]]
|
||||
name = "Halloween Town"
|
||||
|
||||
[[world]]
|
||||
name = "Monstro"
|
||||
|
||||
[[world]]
|
||||
name = "Traverse Town"
|
||||
rooms = ["2nd District"]
|
||||
|
||||
[[world]]
|
||||
name = "Atlantica"
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Halloween Town"]
|
||||
|
||||
[[drops]]
|
||||
name = "Hi-Potion"
|
||||
kind = "item"
|
||||
chance = 2
|
||||
|
||||
[[drops]]
|
||||
name = "Mega-Potion"
|
||||
kind = "item"
|
||||
chance = 1
|
||||
|
||||
[[drops]]
|
||||
name = "Bright Gem"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "bright"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
name = "Shadow"
|
||||
|
||||
[[world]]
|
||||
name = "Wonderland"
|
||||
rooms = ["Bizzare Room"]
|
||||
|
||||
[[world]]
|
||||
name = "Neverland"
|
||||
rooms = ["Ship: Freezer"]
|
||||
|
||||
[[world]]
|
||||
name = "Halloween Town"
|
||||
rooms = ["Graveyard"]
|
||||
|
||||
[[drops]]
|
||||
name = "Potion"
|
||||
kind = "item"
|
||||
chance = 6
|
||||
|
||||
[[drops]]
|
||||
name = "Lucid Shard"
|
||||
kind = "material"
|
||||
chance = 3
|
||||
|
||||
[drops.material]
|
||||
category = "lucid"
|
||||
kind = "shard"
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
name = "Sheltering Zone"
|
||||
|
||||
[[world]]
|
||||
name = "Atlantica"
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Atlantica"]
|
||||
|
||||
[[drops]]
|
||||
name = "Ether"
|
||||
kind = "item"
|
||||
chance = 4
|
||||
|
||||
[[drops]]
|
||||
name = "Frost Gem"
|
||||
kind = "material"
|
||||
chance = 8
|
||||
|
||||
[drops.material]
|
||||
category = "frost"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
name = "Sniperwild"
|
||||
|
||||
[[world]]
|
||||
name = "Traverse Town"
|
||||
rooms = ["2nd District"]
|
||||
|
||||
[[drops]]
|
||||
name = "Power Stone"
|
||||
kind = "material"
|
||||
chance = "?"
|
||||
info = "% based on how many sets of 6 enemies are defeated"
|
||||
|
||||
[drops.material]
|
||||
category = "power"
|
||||
kind = "stone"
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
name = "Soldier"
|
||||
|
||||
[[world]]
|
||||
name = "Agrabah"
|
||||
rooms = ["Main Street"]
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Traverse Town"]
|
||||
|
||||
[[drops]]
|
||||
name = "Spirit Shard"
|
||||
kind = "material"
|
||||
chance = 6
|
||||
|
||||
[drops.material]
|
||||
category = "spirit"
|
||||
kind = "shard"
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
name = "Stealth Soldier"
|
||||
|
||||
[[world]]
|
||||
name = "Hollow Bastion"
|
||||
rooms = ["Entrance Hall", "Grand Hall"]
|
||||
|
||||
[[drops]]
|
||||
name = "Energy Stone"
|
||||
kind = "material"
|
||||
chance = 35
|
||||
|
||||
[drops.material]
|
||||
category = "energy"
|
||||
kind = "stone"
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
name = "Wight Knight"
|
||||
|
||||
[[world]]
|
||||
name = "Halloween Town"
|
||||
rooms = ["Graveyard", "Manor Ruins"]
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Halloween Town"]
|
||||
|
||||
[[drops]]
|
||||
name = "Hi-Potion"
|
||||
kind = "item"
|
||||
chance = 1
|
||||
|
||||
[[drops]]
|
||||
name = "Mega-Potion"
|
||||
kind = "item"
|
||||
chance = 0.5
|
||||
|
||||
[[drops]]
|
||||
name = "Lucid Gem"
|
||||
kind = "material"
|
||||
chance = 2
|
||||
|
||||
[drops.material]
|
||||
category = "lucid"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
name = "Wizard"
|
||||
|
||||
[[world]]
|
||||
name = "Halloween Town"
|
||||
|
||||
[[world]]
|
||||
name = "Traverse Town"
|
||||
rooms = ["Alleyway", "Hotel Hallway"]
|
||||
|
||||
[[world]]
|
||||
name = "Wonderland"
|
||||
|
||||
[[world]]
|
||||
name = "Deep Jungle"
|
||||
rooms = ["Camp", "Bamboo Thicket"]
|
||||
|
||||
[[world]]
|
||||
name = "Agrabah"
|
||||
|
||||
[[world]]
|
||||
name = "Hollow Bastion"
|
||||
rooms = ["Castle Gates", "Entrance Hall", "Grand Hall"]
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Wonderland"]
|
||||
|
||||
[[drops]]
|
||||
name = "Ether"
|
||||
kind = "item"
|
||||
chance = 2
|
||||
|
||||
[[drops]]
|
||||
name = "Shiny Crystal"
|
||||
kind = "material"
|
||||
chance = 2
|
||||
|
||||
[drops.material]
|
||||
category = "shiny"
|
||||
kind = "crystal"
|
||||
|
||||
[[drops]]
|
||||
name = "Wizard Relic"
|
||||
kind = "equipment"
|
||||
chance = 0.2
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
name = "Wyvern"
|
||||
|
||||
[[world]]
|
||||
name = "Hollow Bastion"
|
||||
|
||||
[[world]]
|
||||
name = "Traverse Town"
|
||||
rooms = ["2nd District"]
|
||||
|
||||
[[world]]
|
||||
name = "Deep Jungle"
|
||||
rooms = ["Camp", "Cliff"]
|
||||
|
||||
[[world]]
|
||||
name = "Agrabah"
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Olympus Coliseum"]
|
||||
|
||||
[[drops]]
|
||||
name = "Hi-Potion"
|
||||
kind = "item"
|
||||
chance = 2
|
||||
|
||||
[[drops]]
|
||||
name = "Elixir"
|
||||
kind = "item"
|
||||
chance = 0.5
|
||||
|
||||
[[drops]]
|
||||
name = "Power Crystal"
|
||||
kind = "material"
|
||||
chance = 2
|
||||
|
||||
[drops.material]
|
||||
category = "power"
|
||||
kind = "crystal"
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
name = "Yellow Opera"
|
||||
|
||||
[[world]]
|
||||
name = "Traverse Town"
|
||||
|
||||
[[world]]
|
||||
name = "Wonderland"
|
||||
rooms = ["Lotus Forest"]
|
||||
|
||||
[[world]]
|
||||
name = "Agrabah"
|
||||
|
||||
[[world]]
|
||||
name = "Hollow Bastion"
|
||||
|
||||
[[world]]
|
||||
name = "Monstro"
|
||||
|
||||
[[world]]
|
||||
name = "End of the World"
|
||||
rooms = ["World Terminus | Wonderland"]
|
||||
|
||||
[[drops]]
|
||||
name = "Ether"
|
||||
kind = "item"
|
||||
chance = 1
|
||||
|
||||
[[drops]]
|
||||
name = "Thunder Shard"
|
||||
kind = "material"
|
||||
chance = 6
|
||||
|
||||
[drops.material]
|
||||
category = "thunder"
|
||||
kind = "shard"
|
||||
|
|
@ -0,0 +1,632 @@
|
|||
[[sets]]
|
||||
id = 1
|
||||
name = "List I"
|
||||
|
||||
[[sets]]
|
||||
id = 2
|
||||
name = "List II"
|
||||
requirement = "Create three unique items"
|
||||
|
||||
[[sets]]
|
||||
id = 3
|
||||
name = "List III"
|
||||
requirement = "Create nine unique items"
|
||||
|
||||
[[sets]]
|
||||
id = 4
|
||||
name = "List IV"
|
||||
requirement = "Create fifteen unique items"
|
||||
|
||||
[[sets]]
|
||||
id = 5
|
||||
name = "List V"
|
||||
requirement = "Create all items so far"
|
||||
|
||||
[[sets]]
|
||||
id = 6
|
||||
name = "List VI"
|
||||
requirement = "Create all items so far"
|
||||
|
||||
[[recipes]]
|
||||
result = "Mega-Potion"
|
||||
set = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Spirit Shard"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Shard"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mythril Shard"
|
||||
amount = 4
|
||||
|
||||
[[recipes]]
|
||||
result = "Cottage"
|
||||
set = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Shard"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Shard"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Energy Bangle"
|
||||
set = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Spirit Shard"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Shard"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Power Chain"
|
||||
set = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Shard"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Shard"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Magic Armlet"
|
||||
set = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Blaze Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Frost Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Thunder Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes]]
|
||||
result = "EXP Earring"
|
||||
set = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Fury Stone"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Stone"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mythril Stone"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Serenity Power"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Dark Matter"
|
||||
amount = 3
|
||||
|
||||
[[recipes]]
|
||||
result = "Mega-Ether"
|
||||
set = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Blaze Shard"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Frost Shard"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Thunder Shard"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mythril"
|
||||
amount = 2
|
||||
|
||||
[[recipes]]
|
||||
result = "Guard Earring"
|
||||
set = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Frost Shard"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mythril Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes]]
|
||||
result = "Angel Bangle"
|
||||
set = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Thunder Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Gem"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Golem Chain"
|
||||
set = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Blaze Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Spirit Gem"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Rune Armlet"
|
||||
set = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Blaze Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Frost Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Thunder Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes]]
|
||||
result = "Moogle Badge"
|
||||
set = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Blazing Stone"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Frost Stone"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lightning Stone"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mythril"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Orichalcum"
|
||||
amount = 3
|
||||
|
||||
[[recipes]]
|
||||
result = "AP Up"
|
||||
set = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Blaze Gem"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Frost Gem"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Thunder Gem"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mythril"
|
||||
amount = 4
|
||||
|
||||
[[recipes]]
|
||||
result = "Dark Ring"
|
||||
set = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Gem"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Gem"
|
||||
amount = 2
|
||||
|
||||
[[recipes]]
|
||||
result = "Master Earring"
|
||||
set = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Spirit Shard"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Spirit Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Fury Stone"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Gaia Bangle"
|
||||
set = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Shard"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lightning Stone"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Titan Chain"
|
||||
set = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Shard"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Stone"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Mythril"
|
||||
set = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mythril Shard"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mythril Stone"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mystery Goo"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Elixir"
|
||||
set = 4
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Crystal"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Shiny Crystal"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Crystal"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Orichalcum"
|
||||
amount = 3
|
||||
|
||||
[[recipes]]
|
||||
result = "Defense Up"
|
||||
set = 4
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Shard"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Gem"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Crystal"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Orichalcum"
|
||||
amount = 5
|
||||
|
||||
[[recipes]]
|
||||
result = "Heartguard"
|
||||
set = 4
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Crystal"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Crystal"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Three Stars"
|
||||
set = 4
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Gem"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mystery Goo"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Shiny Crystal"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Atlas Armlet"
|
||||
set = 4
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Blaze Shard"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Frost Shard"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Thunder Shard"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mystery Goo"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Dark Matter"
|
||||
amount = 3
|
||||
|
||||
[[recipes]]
|
||||
result = "Crystal Crown"
|
||||
set = 4
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Crystal"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Crystal"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Shiny Crystal"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Blazing Stone"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Frost Stone"
|
||||
amount = 3
|
||||
|
||||
[[recipes]]
|
||||
result = "Dark Matter"
|
||||
set = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Shard"
|
||||
amount = 9
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Gale"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mythril"
|
||||
amount = 2
|
||||
|
||||
[[recipes]]
|
||||
result = "Megalixir"
|
||||
set = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Gem"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lucid Crystal"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Gale"
|
||||
amount = 2
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Dark Matter"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Power Up"
|
||||
set = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Spirit Shard"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Spirit Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Shard"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Dark Matter"
|
||||
amount = 1
|
||||
|
||||
[[recipes]]
|
||||
result = "Cosmic Arts"
|
||||
set = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Shard"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Gem"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Bright Crystal"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mythril Stone"
|
||||
amount = 3
|
||||
|
||||
[[recipes]]
|
||||
result = "EXP Bracelet"
|
||||
set = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Energy Stone"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Dazzling Stone"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Stormy Stone"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Orichalcum"
|
||||
amount = 8
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Dark Matter"
|
||||
amount = 3
|
||||
|
||||
[[recipes]]
|
||||
result = "Ribbon"
|
||||
set = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Blaze Gem"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Frost Gem"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Thunder Gem"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Gale"
|
||||
amount = 1
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Serenity Power"
|
||||
amount = 3
|
||||
|
||||
[[recipes]]
|
||||
result = "Fantasista"
|
||||
set = 6
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Fury Stone"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Power Stone"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mythril Stone"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Energy Stone"
|
||||
amount = 5
|
||||
|
||||
[[recipes]]
|
||||
result = "Seven Elements"
|
||||
set = 6
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Blazing Stone"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Frost Stone"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Lightning Stone"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Dazzling Stone"
|
||||
amount = 5
|
||||
|
||||
[[recipes]]
|
||||
result = "Ultima Weapon"
|
||||
set = 6
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Thunder Gem"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Mystery Goo"
|
||||
amount = 5
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Serenity Power"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Stormy Stone"
|
||||
amount = 3
|
||||
|
||||
[[recipes.items]]
|
||||
name = "Dark Matter"
|
||||
amount = 3
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
name = "Aerial Champ"
|
||||
|
||||
[[world]]
|
||||
name = "Radiant Garden"
|
||||
|
||||
[[drops]]
|
||||
name = "Remembrance Stone"
|
||||
kind = "material"
|
||||
chance = 8
|
||||
|
||||
[drops.material]
|
||||
category = "remembrance"
|
||||
kind = "stone"
|
||||
|
||||
[[drops]]
|
||||
name = "Serenity Stone"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "serenity"
|
||||
kind = "stone"
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
name = "Aerial Knocker"
|
||||
|
||||
[[world]]
|
||||
name = "Pride Lands"
|
||||
|
||||
[[drops]]
|
||||
name = "Power Gem"
|
||||
kind = "material"
|
||||
chance = 8
|
||||
|
||||
[drops.material]
|
||||
category = "power"
|
||||
kind = "gem"
|
||||
|
||||
[[drops]]
|
||||
name = "Bright Gem"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "bright"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
name = "Aerial Viking"
|
||||
|
||||
[[world]]
|
||||
name = "Radiant Garden"
|
||||
|
||||
[[drops]]
|
||||
name = "Remembrance Stone"
|
||||
kind = "material"
|
||||
chance = 6
|
||||
|
||||
[drops.material]
|
||||
category = "remembrance"
|
||||
kind = "stone"
|
||||
|
||||
[[drops]]
|
||||
name = "Serenity Stone"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "serenity"
|
||||
kind = "stone"
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
name = "Aeroplane"
|
||||
|
||||
[[world]]
|
||||
name = "Timeless River"
|
||||
|
||||
[[drops]]
|
||||
name = "Frost Stone"
|
||||
kind = "material"
|
||||
chance = 8
|
||||
|
||||
[drops.material]
|
||||
category = "frost"
|
||||
kind = "stone"
|
||||
|
||||
[[drops]]
|
||||
name = "Bright Stone"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "bright"
|
||||
kind = "stone"
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
name = "Air Pirate"
|
||||
|
||||
[[world]]
|
||||
name = "Port Royal"
|
||||
|
||||
[[world]]
|
||||
name = "The Land of Dragons"
|
||||
|
||||
[[drops]]
|
||||
name = "Dark Crystal"
|
||||
kind = "material"
|
||||
chance = 8
|
||||
|
||||
[drops.material]
|
||||
category = "dark"
|
||||
kind = "crystal"
|
||||
|
||||
[[drops]]
|
||||
name = "Bright Crystal"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "bright"
|
||||
kind = "crystal"
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
name = "Armored Knight"
|
||||
|
||||
[[world]]
|
||||
name = "Radiant Garden"
|
||||
|
||||
[[world]]
|
||||
name = "Beast's Castle"
|
||||
|
||||
[[world]]
|
||||
name = "Port Royal"
|
||||
|
||||
[[world]]
|
||||
name = "Halloween Town"
|
||||
|
||||
[[world]]
|
||||
name = "Pride Lands"
|
||||
|
||||
[[drops]]
|
||||
name = "Lightning Gem"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "lightning"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
name = "Assassin"
|
||||
kind = "nobody"
|
||||
|
||||
[[world]]
|
||||
name = "The World That Never Was"
|
||||
|
||||
[[drops]]
|
||||
name = "Twilight Gem"
|
||||
kind = "material"
|
||||
chance = 12
|
||||
|
||||
[drops.material]
|
||||
category = "twilight"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
name = "Assault Rider"
|
||||
|
||||
[[world]]
|
||||
name = "The Land of Dragons"
|
||||
|
||||
[[drops]]
|
||||
name = "Dark Stone"
|
||||
kind = "material"
|
||||
chance = 12
|
||||
|
||||
[drops.material]
|
||||
category = "dark"
|
||||
kind = "stone"
|
||||
|
||||
[[drops]]
|
||||
name = "Serenity Shard"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "serenity"
|
||||
kind = "shard"
|
||||
|
||||
[[drops]]
|
||||
name = "Hi-Potion"
|
||||
kind = "item"
|
||||
chance = 10
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
name = "Beffudler"
|
||||
|
||||
[[world]]
|
||||
name = "Radiant Garden"
|
||||
|
||||
[[drops]]
|
||||
name = "Remembrance Shard"
|
||||
kind = "material"
|
||||
chance = 6
|
||||
|
||||
[drops.material]
|
||||
category = "remembrance"
|
||||
kind = "shard"
|
||||
|
||||
[[drops]]
|
||||
name = "Serenity Shard"
|
||||
kind = "material"
|
||||
chance = 3
|
||||
|
||||
[drops.material]
|
||||
category = "serenity"
|
||||
kind = "shard"
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
name = "Berserker"
|
||||
kind = "nobody"
|
||||
|
||||
[[world]]
|
||||
name = "Twilight Town"
|
||||
|
||||
[[world]]
|
||||
name = "Radiant Garden"
|
||||
|
||||
[[world]]
|
||||
name = "The World That Never Was"
|
||||
|
||||
[[drops]]
|
||||
name = "Dense Crystal"
|
||||
kind = "material"
|
||||
chance = 12
|
||||
|
||||
[drops.material]
|
||||
category = "dense"
|
||||
kind = "crystal"
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
name = "Bolt Tower"
|
||||
|
||||
[[world]]
|
||||
name = "The Land of Dragons"
|
||||
|
||||
[[world]]
|
||||
name = "Pride Lands"
|
||||
|
||||
[[drops]]
|
||||
name = "Lightning Shard"
|
||||
kind = "material"
|
||||
chance = 10
|
||||
|
||||
[drops.material]
|
||||
category = "lightning"
|
||||
kind = "shard"
|
||||
|
||||
[[drops]]
|
||||
name = "Energy Shard"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "energy"
|
||||
kind = "shard"
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
name = "Bookmaster"
|
||||
|
||||
[[world]]
|
||||
name = "Radiant Garden"
|
||||
|
||||
[[world]]
|
||||
name = "Space Paranoids"
|
||||
|
||||
[[drops]]
|
||||
name = "Lucid Gem"
|
||||
kind = "material"
|
||||
chance = 10
|
||||
|
||||
[drops.material]
|
||||
category = "lucid"
|
||||
kind = "gem"
|
||||
|
||||
[[drops]]
|
||||
name = "Energy Crystal"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "energy"
|
||||
kind = "crystal"
|
||||
|
||||
[[drops]]
|
||||
name = "Akashic Record"
|
||||
kind = "equipment"
|
||||
chance = 1
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
name = "Bulky Vendor"
|
||||
|
||||
[[world]]
|
||||
name = "Beast's Castle"
|
||||
|
||||
[[world]]
|
||||
name = "Halloween Town"
|
||||
|
||||
[[world]]
|
||||
name = "Olympus Coliseum"
|
||||
|
||||
[[world]]
|
||||
name = "Agrabah"
|
||||
|
||||
[[world]]
|
||||
name = "The Land of Dragons"
|
||||
|
||||
[[drops]]
|
||||
name = "Serenity Shard"
|
||||
kind = "material"
|
||||
chance = 100
|
||||
info = "Using Capsule Prize reaction command"
|
||||
|
||||
[drops.material]
|
||||
category = "serenity"
|
||||
kind = "shard"
|
||||
|
||||
[[drops]]
|
||||
name = "Orichalcum"
|
||||
kind = "material"
|
||||
chance = 8
|
||||
info = "Using Capsule Prize reaction command"
|
||||
|
||||
[drops.material]
|
||||
category = "orichalcum"
|
||||
kind = "gem"
|
||||
|
||||
[[drops]]
|
||||
name = "Serenity Stone"
|
||||
kind = "material"
|
||||
chance = 100
|
||||
info = "Using Rare Capsule reaction command"
|
||||
|
||||
[drops.material]
|
||||
category = "serenity"
|
||||
kind = "stone"
|
||||
|
||||
[[drops]]
|
||||
name = "Orichalcum"
|
||||
kind = "material"
|
||||
chance = 10
|
||||
info = "Using Rare Capsule reaction command"
|
||||
|
||||
[drops.material]
|
||||
category = "orichalcum"
|
||||
kind = "gem"
|
||||
|
||||
[[drops]]
|
||||
name = "Serenity Gem"
|
||||
kind = "material"
|
||||
chance = 100
|
||||
info = "Using Limited Capsule reaction command"
|
||||
|
||||
[drops.material]
|
||||
category = "serenity"
|
||||
kind = "gem"
|
||||
|
||||
[[drops]]
|
||||
name = "Orichalcum"
|
||||
kind = "material"
|
||||
chance = 16
|
||||
info = "Using Limited Capsule reaction command"
|
||||
|
||||
[drops.material]
|
||||
category = "orichalcum"
|
||||
kind = "gem"
|
||||
|
||||
[[drops]]
|
||||
name = "Serenity Crystal"
|
||||
kind = "material"
|
||||
chance = 100
|
||||
info = "Using Prime Capsule reaction command"
|
||||
|
||||
[drops.material]
|
||||
category = "serenity"
|
||||
kind = "crystal"
|
||||
|
||||
[[drops]]
|
||||
name = "Orichalcum"
|
||||
kind = "material"
|
||||
chance = 16
|
||||
info = "Using Prime Capsule reaction command"
|
||||
|
||||
[drops.material]
|
||||
category = "orichalcum"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
name = "Camo Cannon"
|
||||
|
||||
[[world]]
|
||||
name = "Radiant Garden"
|
||||
|
||||
[[drops]]
|
||||
name = "Remembrance Shard"
|
||||
kind = "material"
|
||||
chance = 6
|
||||
|
||||
[drops.material]
|
||||
category = "remembrance"
|
||||
kind = "shard"
|
||||
|
||||
[[drops]]
|
||||
name = "Serenity Shard"
|
||||
kind = "material"
|
||||
chance = 3
|
||||
|
||||
[drops.material]
|
||||
category = "serenity"
|
||||
kind = "shard"
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
name = "Cannon Gun"
|
||||
|
||||
[[world]]
|
||||
name = "Port Royal"
|
||||
|
||||
[[world]]
|
||||
name = "Space Paranoids"
|
||||
|
||||
[[drops]]
|
||||
name = "Blazing Stone"
|
||||
kind = "material"
|
||||
chance = 6
|
||||
|
||||
[drops.material]
|
||||
category = "blazing"
|
||||
kind = "stone"
|
||||
|
||||
[[drops]]
|
||||
name = "Bright Stone"
|
||||
kind = "material"
|
||||
chance = 3
|
||||
|
||||
[drops.material]
|
||||
category = "bright"
|
||||
kind = "stone"
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
name = "Creeper Plant"
|
||||
|
||||
[[world]]
|
||||
name = "Olympus Coliseum"
|
||||
|
||||
[[world]]
|
||||
name = "Halloween Town"
|
||||
|
||||
[[drops]]
|
||||
name = "Power Shard"
|
||||
kind = "material"
|
||||
chance = 8
|
||||
|
||||
[drops.material]
|
||||
category = "power"
|
||||
kind = "shard"
|
||||
|
||||
[[drops]]
|
||||
name = "Bright Shard"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "bright"
|
||||
kind = "shard"
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
name = "Creeper"
|
||||
kind = "nobody"
|
||||
|
||||
[[world]]
|
||||
name = "Twilight Town"
|
||||
|
||||
[[world]]
|
||||
name = "Radiant Garden"
|
||||
|
||||
[[world]]
|
||||
name = "The World That Never Was"
|
||||
|
||||
[[drops]]
|
||||
name = "Dense Shard"
|
||||
kind = "material"
|
||||
chance = 8
|
||||
|
||||
[drops.material]
|
||||
category = "dense"
|
||||
kind = "shard"
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
name = "Crescendo"
|
||||
|
||||
[[world]]
|
||||
name = "Olympus Coliseum"
|
||||
|
||||
[[drops]]
|
||||
name = "Blazing Crystal"
|
||||
kind = "material"
|
||||
chance = 6
|
||||
|
||||
[drops.material]
|
||||
category = "blazing"
|
||||
kind = "crystal"
|
||||
|
||||
[[drops]]
|
||||
name = "Bright Crystal"
|
||||
kind = "material"
|
||||
chance = 3
|
||||
|
||||
[drops.material]
|
||||
category = "bright"
|
||||
kind = "crystal"
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
name = "Crimson Jazz"
|
||||
|
||||
[[world]]
|
||||
name = "Agrabah"
|
||||
|
||||
[[world]]
|
||||
name = "Beast's Castle"
|
||||
|
||||
[[world]]
|
||||
name = "Olympus Coliseum"
|
||||
|
||||
[[world]]
|
||||
name = "Radiant Garden"
|
||||
|
||||
[[drops]]
|
||||
name = "Blazing Crystal"
|
||||
kind = "material"
|
||||
chance = 12
|
||||
|
||||
[drops.material]
|
||||
category = "blazing"
|
||||
kind = "crystal"
|
||||
|
||||
[[drops]]
|
||||
name = "Serenity Stone"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "serenity"
|
||||
kind = "stone"
|
||||
|
||||
[[drops]]
|
||||
name = "Mega-Ether"
|
||||
kind = "item"
|
||||
chance = 5
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
name = "Dancer"
|
||||
kind = "nobody"
|
||||
|
||||
[[world]]
|
||||
name = "The World That Never Was"
|
||||
|
||||
[[drops]]
|
||||
name = "Twilight Stone"
|
||||
kind = "material"
|
||||
chance = 12
|
||||
|
||||
[drops.material]
|
||||
category = "twilight"
|
||||
kind = "stone"
|
||||
|
||||
[[drops]]
|
||||
name = "Serenity Gem"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "serenity"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
name = "Dragoon"
|
||||
kind = "nobody"
|
||||
|
||||
[[world]]
|
||||
name = "Beast's Castle"
|
||||
|
||||
[[world]]
|
||||
name = "Twilight Town"
|
||||
|
||||
[[world]]
|
||||
name = "The World That Never Was"
|
||||
|
||||
[[drops]]
|
||||
name = "Dense Shard"
|
||||
kind = "material"
|
||||
chance = 12
|
||||
|
||||
[drops.material]
|
||||
category = "dense"
|
||||
kind = "shard"
|
||||
|
||||
[[drops]]
|
||||
name = "Nobody Lance"
|
||||
kind = "equipment"
|
||||
chance = 1
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
name = "Devastator"
|
||||
|
||||
[[world]]
|
||||
name = "Space Paranoids"
|
||||
best = true
|
||||
|
||||
[[world]]
|
||||
name = "Radiant Garden"
|
||||
|
||||
[[drops]]
|
||||
name = "Lightning Crystal"
|
||||
kind = "material"
|
||||
chance = 12
|
||||
|
||||
[drops.material]
|
||||
category = "lightning"
|
||||
kind = "crystal"
|
||||
|
||||
[[drops]]
|
||||
name = "Serenity Stone"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "serenity"
|
||||
kind = "stone"
|
||||
|
||||
[[drops]]
|
||||
name = "Elixir"
|
||||
kind = "item"
|
||||
chance = 5
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
name = "Driller Mole"
|
||||
|
||||
[[world]]
|
||||
name = "Halloween Town"
|
||||
|
||||
[[world]]
|
||||
name = "Olympus Coliseum"
|
||||
|
||||
[[drops]]
|
||||
name = "Lightning Stone"
|
||||
kind = "material"
|
||||
chance = 6
|
||||
|
||||
[drops.material]
|
||||
category = "lightning"
|
||||
kind = "stone"
|
||||
|
||||
[[drops]]
|
||||
name = "Bright Stone"
|
||||
kind = "material"
|
||||
chance = 3
|
||||
|
||||
[drops.material]
|
||||
category = "bright"
|
||||
kind = "stone"
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
name = "Dusk"
|
||||
kind = "nobody"
|
||||
|
||||
[[world]]
|
||||
name = "The World That Never Was"
|
||||
|
||||
[[drops]]
|
||||
name = "Twilight Shard"
|
||||
kind = "material"
|
||||
chance = 10
|
||||
|
||||
[drops.material]
|
||||
category = "twilight"
|
||||
kind = "shard"
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
name = "Emerald Blues"
|
||||
|
||||
[[world]]
|
||||
name = "Halloween Town"
|
||||
|
||||
[[world]]
|
||||
name = "Space Paranoids"
|
||||
|
||||
[[world]]
|
||||
name = "The Land of Dragons"
|
||||
|
||||
[[world]]
|
||||
name = "Agrabah"
|
||||
|
||||
[[drops]]
|
||||
name = "Lightning Stone"
|
||||
kind = "material"
|
||||
chance = 10
|
||||
|
||||
[drops.material]
|
||||
category = "lightning"
|
||||
kind = "stone"
|
||||
|
||||
[[drops]]
|
||||
name = "Energy Gem"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "energy"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
name = "Fat Bandit"
|
||||
|
||||
[[world]]
|
||||
name = "Agrabah"
|
||||
|
||||
[[drops]]
|
||||
name = "Blazing Gem"
|
||||
kind = "material"
|
||||
chance = 12
|
||||
|
||||
[drops.material]
|
||||
category = "blazing"
|
||||
kind = "gem"
|
||||
|
||||
[[drops]]
|
||||
name = "Serenity Shard"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "serenity"
|
||||
kind = "shard"
|
||||
|
||||
[[drops]]
|
||||
name = "Ether"
|
||||
kind = "item"
|
||||
chance = 10
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
name = "Fiery Globe"
|
||||
|
||||
[[world]]
|
||||
name = "Agrabah"
|
||||
|
||||
[[drops]]
|
||||
name = "Blazing Gem"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "blazing"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
name = "Fortuneteller"
|
||||
|
||||
[[world]]
|
||||
name = "Agrabah"
|
||||
|
||||
[[drops]]
|
||||
name = "Frost Gem"
|
||||
kind = "material"
|
||||
chance = 10
|
||||
|
||||
[drops.material]
|
||||
category = "frost"
|
||||
kind = "gem"
|
||||
|
||||
[[drops]]
|
||||
name = "Energy Gem"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "energy"
|
||||
kind = "gem"
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
name = "Gambler"
|
||||
kind = "nobody"
|
||||
|
||||
[[world]]
|
||||
name = "Port Royal"
|
||||
|
||||
[[world]]
|
||||
name = "The World That Never Was"
|
||||
|
||||
[[drops]]
|
||||
name = "Twilight Shard"
|
||||
kind = "material"
|
||||
chance = 12
|
||||
|
||||
[drops.material]
|
||||
category = "twilight"
|
||||
kind = "shard"
|
||||
|
||||
[[drops]]
|
||||
name = "Nobody Guard"
|
||||
kind = "equipment"
|
||||
chance = 1
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
name = "Gargoyle Knight"
|
||||
|
||||
[[world]]
|
||||
name = "Beast's Castle"
|
||||
|
||||
[[drops]]
|
||||
name = "Dark Gem"
|
||||
kind = "material"
|
||||
chance = 10
|
||||
|
||||
[drops.material]
|
||||
category = "dark"
|
||||
kind = "gem"
|
||||
|
||||
[[drops]]
|
||||
name = "Energy Shard"
|
||||
kind = "material"
|
||||
chance = 4
|
||||
|
||||
[drops.material]
|
||||
category = "energy"
|
||||
kind = "shard"
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue