From e2549e51cc982252e369843960ea260fa3480ddf Mon Sep 17 00:00:00 2001 From: Wynd Date: Sat, 29 Jun 2024 22:56:26 +0300 Subject: [PATCH] Initial commit for BBS command melding table --- .gitignore | 11 + .prettierrc.json | 13 + Cargo.toml | 13 + abilities.json | 200 + commands.json | 2460 +++ finish-commands.json | 225 + index.html | 21760 +++++++++++++++++++++++ rust-toolchain.toml | 2 + rustfmt.toml | 8 + src/main.rs | 158 + templates/components/char-filters.html | 36 + templates/components/search.html | 29 + templates/components/type-filters.html | 45 + templates/layouts/base.html | 57 + templates/pages/commands.html | 189 + 15 files changed, 25206 insertions(+) create mode 100644 .gitignore create mode 100644 .prettierrc.json create mode 100644 Cargo.toml create mode 100644 abilities.json create mode 100644 commands.json create mode 100644 finish-commands.json create mode 100644 index.html create mode 100644 rust-toolchain.toml create mode 100644 rustfmt.toml create mode 100644 src/main.rs create mode 100644 templates/components/char-filters.html create mode 100644 templates/components/search.html create mode 100644 templates/components/type-filters.html create mode 100644 templates/layouts/base.html create mode 100644 templates/pages/commands.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ff47c2d --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +# Generated by Cargo +# will have compiled files and executables +debug/ +target/ + +# 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 +Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 0000000..f9c8c8d --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,13 @@ +{ + "useTabs": true, + "tabWidth": 4, + "plugins": ["prettier-plugin-jinja-template"], + "overrides": [ + { + "files": ["*.html"], + "options": { + "parser": "jinja-template" + } + } + ] +} diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..8effcdf --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "khguide" +version = "0.1.0" +edition = "2021" + +[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"] } +thiserror = "1.0.61" +itertools = "0.13.0" diff --git a/abilities.json b/abilities.json new file mode 100644 index 0000000..683d4ff --- /dev/null +++ b/abilities.json @@ -0,0 +1,200 @@ +[ + { + "name": "Treasure Magnet", + "from": "Hungry Crystal", + "category": "prize", + "max": 5, + "types": ["I", "J", "K", "L", "M", "N", "O", "P"] + }, + { + "name": "HP Prize Plus", + "from": "Hungry Crystal", + "category": "prize", + "max": 3, + "types": ["A", "B", "C", "D", "E", "F", "G", "H"] + }, + { + "name": "Link Prize Plus", + "from": "Abounding Crystal", + "category": "prize", + "max": 3, + "types": ["A", "C", "D", "I", "K"] + }, + { + "name": "Lucky Strike", + "from": "Abounding Crystal", + "category": "prize", + "max": 5, + "types": ["E", "F", "G", "L", "M", "N", "O"] + }, + + { + "name": "HP Boost", + "from": "Soothing Crystal", + "category": "status", + "max": 3, + "types": ["A", "C", "D", "I", "K", "L"] + }, + { + "name": "Fire Boost", + "from": "Shimmering Crystal", + "category": "status", + "max": 3, + "types": ["A", "B"] + }, + { + "name": "Blizzard Boost", + "from": "Shimmering Crystal", + "category": "status", + "max": 3, + "types": ["E", "F"] + }, + { + "name": "Thunder Boost", + "from": "Shimmering Crystal", + "category": "status", + "max": 3, + "types": ["I", "J"] + }, + { + "name": "Cure Boost", + "from": "Shimmering Crystal", + "category": "status", + "max": 3, + "types": ["M", "N"] + }, + { + "name": "Item Boost", + "from": "Soothing Crystal", + "category": "status", + "max": 3, + "types": ["E", "G", "H", "M", "O", "P"] + }, + { + "name": "Attack Haste", + "from": "Fleeting Crystal", + "category": "status", + "max": 5, + "types": ["C", "D", "G", "K", "L", "O"] + }, + { + "name": "Magic Haste", + "from": "Fleeting Crystal", + "category": "status", + "max": 5, + "types": ["A", "E", "H", "I", "M", "P"] + }, + { + "name": "Combo F Boost", + "from": "Pulsing Crystal", + "category": "status", + "max": 2, + "types": ["H", "I", "J", "M", "P"] + }, + { + "name": "Finish Boost", + "from": "Pulsing Crystal", + "category": "status", + "max": 2, + "types": ["B", "C", "K", "L", "O"] + }, + { + "name": "Fire Screen", + "from": "Shimmering Crystal", + "category": "status", + "max": 2, + "types": ["C", "D"] + }, + { + "name": "Blizzard Screen", + "from": "Shimmering Crystal", + "category": "status", + "max": 2, + "types": ["G", "H"] + }, + { + "name": "Thunder Screen", + "from": "Shimmering Crystal", + "category": "status", + "max": 2, + "types": ["K", "L"] + }, + { + "name": "Dark Screen", + "from": "Shimmering Crystal", + "category": "status", + "max": 2, + "types": ["O", "P"] + }, + { + "name": "Reload Boost", + "from": "Fleeting Crystal", + "category": "status", + "max": 1, + "types": ["B", "F", "J", "N"] + }, + { + "name": "Defender", + "from": "Soothing Crystal", + "category": "status", + "max": 1, + "types": ["J", "N"] + }, + + { + "name": "Combo Plus", + "from": "Wellspring Crystal", + "category": "support", + "max": 3, + "types": ["C", "D", "E", "K", "L", "M", "N"] + }, + { + "name": "Air Combo Plus", + "from": "Wellspring Crystal", + "category": "support", + "max": 3, + "types": ["A", "F", "G", "H", "I", "O", "P"] + }, + { + "name": "Exp Chance", + "from": "Abounding Crystal", + "category": "support", + "max": 1, + "types": ["B", "J"] + }, + { + "name": "Exp Walker", + "from": "Abounding Crystal", + "category": "support", + "max": 1, + "types": ["H", "P"] + }, + { + "name": "Damage Syphon", + "from": "Soothing Crystal", + "category": "support", + "max": 1, + "types": ["B", "F"] + }, + { + "name": "Second Chance", + "from": "Pulsing Crystal", + "category": "support", + "max": 1, + "types": ["F", "N"] + }, + { + "name": "Once More", + "from": "Wellspring Crystal", + "category": "support", + "max": 1, + "types": ["B", "J"] + }, + { + "name": "Leaf Bracer", + "from": "Pulsing Crystal", + "category": "support", + "max": 1, + "types": ["A", "D", "E", "G"] + } +] diff --git a/commands.json b/commands.json new file mode 100644 index 0000000..c343530 --- /dev/null +++ b/commands.json @@ -0,0 +1,2460 @@ +[ + { + "name": "Quick Blitz", + "category": "attack", + "char": ["A", "V", "T"], + "starting": true, + "info": "Starting Command" + }, + { + "name": "Blitz", + "category": "attack", + "char": ["A", "V", "T"], + "recipes": [ + { + "char": ["A"], + "type": "P", + "ingredients": ["Wishing Edge", "Barrier Surge"], + "chance": 90 + }, + { + "char": ["V"], + "type": "O", + "ingredients": ["Quick Blitz", "Slot Edge"], + "chance": 90 + }, + { + "char": ["A", "T"], + "type": "O", + "ingredients": ["Quick Blitz", "Slot Edge"], + "chance": 100 + }, + { + "char": ["V"], + "type": "K", + "ingredients": ["Stun Edge", "Slot Edge"], + "chance": 90 + }, + { + "char": ["A", "T"], + "type": "K", + "ingredients": ["Stun Edge", "Slot Edge"], + "chance": 100 + } + ] + }, + { + "name": "Meteor Crash", + "category": "attack", + "char": ["T"], + "recipes": [ + { + "char": ["T"], + "type": "N", + "ingredients": ["Quake", "Blitz"], + "chance": 100 + }, + { + "char": ["T"], + "type": "D", + "ingredients": ["Fire Strike", "Brutal Blast"], + "chance": 100 + } + ] + }, + { + "name": "Magic Hour", + "category": "attack", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "N", + "ingredients": ["Aeroga", "Barrier Surge"], + "chance": 90, + "info": "100% after obtaining Lightning Ray" + }, + { + "char": ["A"], + "type": "O", + "ingredients": ["Zero Graviga", "Blitz"], + "chance": 90, + "info": "100% after obtaining Meteor Shower" + } + ] + }, + { + "name": "Fire Dash", + "category": "attack", + "char": ["A", "V", "T"], + "recipes": [ + { + "char": ["A", "V", "T"], + "type": "D", + "ingredients": ["Sliding Dash", "Fire"], + "chance": 100 + }, + { + "char": ["A", "V", "T"], + "type": "C", + "ingredients": ["Sliding Dash", "Fira"], + "chance": 100 + }, + { + "char": ["A", "V", "T"], + "type": "D", + "ingredients": ["Confusion Strike", "Fire"], + "chance": 100 + } + ] + }, + { + "name": "Dark Haze", + "category": "attack", + "char": ["T"], + "recipes": [ + { + "char": ["T"], + "type": "D", + "ingredients": ["Fire Dash", "Zero Gravira"], + "chance": 100 + }, + { + "char": ["T"], + "type": "A", + "ingredients": ["Fire Dash", "Blackout"], + "chance": 100 + }, + { + "char": ["T"], + "type": "C", + "ingredients": ["Fire Surge", "Zero Gravity"], + "chance": 100 + } + ] + }, + { + "name": "Sonic Blade", + "category": "attack", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T"], + "type": "D", + "ingredients": ["Blitz", "Dark Haze"], + "chance": 90 + }, + { + "char": ["A", "V", "T"], + "type": "N", + "ingredients": ["Blitz", "Air Slide"], + "chance": 90 + }, + { + "char": ["A", "V", "T"], + "type": "K", + "ingredients": ["Fire Dash", "Thunder Surge"], + "chance": 90 + } + ] + }, + { + "name": "Chaos Blade", + "category": "attack", + "char": ["T"], + "recipes": [ + { + "char": ["T"], + "type": "B", + "ingredients": ["Dark Haze", "Sonic Blade"], + "chance": 90 + } + ] + }, + { + "name": "Zantetsuken", + "category": "attack", + "char": ["T"], + "recipes": [ + { + "char": ["T"], + "type": "B", + "ingredients": ["Dark Haze", "Stopga"], + "chance": 80 + }, + { + "char": ["T"], + "type": "F", + "ingredients": ["Sonic Blade", "Stopga"], + "chance": 80 + } + ] + }, + { + "name": "Strike Raid", + "category": "attack", + "char": ["A", "V", "T"], + "recipes": [ + { + "char": ["A", "V", "T"], + "type": "O", + "ingredients": ["Quick Blitz", "Sliding Dash"], + "chance": 100 + } + ] + }, + { + "name": "Freeze Raid", + "category": "attack", + "char": ["A", "V", "T"], + "recipes": [ + { + "char": ["A", "V", "T"], + "type": "I", + "ingredients": ["Strike Raid", "Blizzara"], + "chance": 100 + }, + { + "char": ["A", "V", "T"], + "type": "K", + "ingredients": ["Blizzard Edge", "Binding Strike"], + "chance": 100 + } + ] + }, + { + "name": "Treasure Raid", + "category": "attack", + "char": ["V"], + "recipes": [ + { + "char": ["V"], + "type": "O", + "ingredients": ["Strike Raid", "Slot Edge"], + "chance": 100 + }, + { + "char": ["V"], + "type": "D", + "ingredients": ["Slot Edge", "Magnet"], + "chance": 100 + }, + { + "char": ["V"], + "type": "K", + "ingredients": ["Slot Edge", "Magnera"], + "chance": 100 + } + ] + }, + { + "name": "Spark Raid", + "category": "attack", + "char": ["V"], + "recipes": [ + { + "char": ["V"], + "type": "J", + "ingredients": ["Freeze Raid", "Magnega"], + "chance": 100 + }, + { + "char": ["V"], + "type": "N", + "ingredients": ["Treasure Raid", "Magnega"], + "chance": 100 + }, + { + "char": ["V"], + "type": "P", + "ingredients": ["Thunder Surge", "Dodge Roll"], + "chance": 20 + }, + { + "char": ["V"], + "type": "L", + "ingredients": ["Thundaga", "Dodge Roll"], + "chance": 20 + }, + { + "char": ["V"], + "type": "L", + "ingredients": ["Dodge Roll", "Stun Block"], + "chance": 20 + } + ] + }, + { + "name": "Wind Raid", + "category": "attack", + "char": ["V"], + "recipes": [ + { + "char": ["V"], + "type": "B", + "ingredients": ["Freeze Raid", "Aeroga"], + "chance": 100 + }, + { + "char": ["V"], + "type": "F", + "ingredients": ["Treasure Raid", "Aeroga"], + "chance": 100 + } + ] + }, + { + "name": "Fire Surge", + "category": "attack", + "char": ["A", "V", "T"], + "recipes": [ + { + "char": ["A", "V", "T"], + "type": "D", + "ingredients": ["Fire Dash", "Ignite"], + "chance": 100 + }, + { + "char": ["A", "V", "T"], + "type": "A", + "ingredients": ["Fire Dash", "Fira"], + "chance": 100 + }, + { + "char": ["A", "V", "T"], + "type": "O", + "ingredients": ["Confusion Strike", "Fira"], + "chance": 100 + }, + { + "char": ["A", "V", "T"], + "type": "K", + "ingredients": ["Binding Strike", "Fira"], + "chance": 100 + } + ] + }, + { + "name": "Barrier Surge", + "category": "attack", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "D", + "ingredients": ["Fire Dash", "Barrier"], + "chance": 100 + }, + { + "char": ["A"], + "type": "K", + "ingredients": ["Stun Edge", "Barrier"], + "chance": 100 + } + ] + }, + { + "name": "Thunder Surge", + "category": "attack", + "char": ["A", "V", "T"], + "recipes": [ + { + "char": ["A", "V", "T"], + "type": "D", + "ingredients": ["Fire Dash", "Thundara"], + "chance": 100 + }, + { + "char": ["A", "V", "T"], + "type": "G", + "ingredients": ["Freeze Raid", "Thundara"], + "chance": 100 + }, + { + "char": ["A", "V", "T"], + "type": "I", + "ingredients": ["Stun Edge", "Thundara"], + "chance": 100 + }, + { + "char": ["A", "V", "T"], + "type": "I", + "ingredients": ["Confusion Strike", "Thundara"], + "chance": 95 + } + ] + }, + { + "name": "Ars Solum", + "category": "attack", + "char": ["T"], + "recipes": [ + { + "char": ["T"], + "type": "B", + "ingredients": ["Dark Haze", "Sonic Blade"], + "chance": 20 + }, + { + "char": ["T"], + "type": "B", + "ingredients": ["Dark Haze", "Stopga"], + "chance": 20 + }, + { + "char": ["T"], + "type": "F", + "ingredients": ["Sonic Blade", "Stopga"], + "chance": 20 + }, + { + "char": ["T"], + "type": "K", + "ingredients": ["Sliding Dash", "Thunder"], + "chance": 5 + }, + { + "char": ["T"], + "type": "L", + "ingredients": ["Strike Raid", "Thunder"], + "chance": 5 + }, + { + "char": ["T"], + "type": "K", + "ingredients": ["Strike Raid", "Thundara"], + "chance": 5 + }, + { + "char": ["T"], + "type": "I", + "ingredients": ["Confusion Strike", "Thundara"], + "chance": 5 + } + ] + }, + { + "name": "Ars Arcanum", + "category": "attack", + "char": ["V"], + "recipes": [ + { + "char": ["V"], + "type": "F", + "ingredients": ["Blitz", "Aerial Slam"], + "chance": 100 + }, + { + "char": ["V"], + "type": "O", + "ingredients": ["Quick Blitz", "Slot Edge"], + "chance": 10 + }, + { + "char": ["V"], + "type": "C", + "ingredients": ["Fire Strike", "Aerora"], + "chance": 10 + }, + { + "char": ["V"], + "type": "G", + "ingredients": ["Quick Blitz", "Blizzard"], + "chance": 5 + }, + { + "char": ["V"], + "type": "H", + "ingredients": ["Quick Blitz", "Blizzara"], + "chance": 5 + }, + { + "char": ["V"], + "type": "E", + "ingredients": ["Sliding Dash", "Blizzard"], + "chance": 5 + }, + { + "char": ["V"], + "type": "G", + "ingredients": ["Sliding Dash", "Blizzara"], + "chance": 5 + }, + { + "char": ["V"], + "type": "P", + "ingredients": ["Poison Edge", "Cura"], + "chance": 5 + }, + { + "char": ["V"], + "type": "G", + "ingredients": ["Blizzard Edge", "Cura"], + "chance": 5 + } + ] + }, + { + "name": "Time Splicer", + "category": "attack", + "char": ["V", "A"], + "recipes": [ + { + "char": ["V", "A"], + "type": "F", + "ingredients": ["Aerial Slam", "Stopga"], + "chance": 100 + }, + { + "char": ["A"], + "type": "C", + "ingredients": ["Stopga", "Barrier"], + "chance": 20 + }, + { + "char": ["A"], + "type": "P", + "ingredients": ["Barrier Surge", "Wishing Edge"], + "chance": 10 + }, + { + "char": ["V", "A"], + "type": "K", + "ingredients": ["Stun Edge", "Slot Edge"], + "chance": 10 + } + ] + }, + { + "name": "Poison Edge", + "category": "attack", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "O", + "ingredients": ["Quick Blitz", "Poison"], + "chance": 95 + }, + { + "char": ["T", "V", "A"], + "type": "K", + "ingredients": ["Sliding Dash", "Poison"], + "chance": 95 + }, + { + "char": ["T", "V", "A"], + "type": "D", + "ingredients": ["Strike Raid", "Poison"], + "chance": 95 + } + ] + }, + { + "name": "Wishing Edge", + "category": "attack", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "O", + "ingredients": ["Strike Raid", "Barrier Surge"], + "chance": 100 + }, + { + "char": ["A"], + "type": "K", + "ingredients": ["Barrier Surge", "Stun Edge"], + "chance": 100 + }, + { + "char": ["A"], + "type": "J", + "ingredients": ["Stun Edge", "Binding Strike"], + "chance": 100 + } + ] + }, + { + "name": "Blizzard Edge", + "category": "attack", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "G", + "ingredients": ["Quick Blitz", "Blizzard"], + "chance": 95 + }, + { + "char": ["T", "V", "A"], + "type": "H", + "ingredients": ["Quick Blitz", "Blizzara"], + "chance": 95 + }, + { + "char": ["T", "V", "A"], + "type": "E", + "ingredients": ["Sliding Dash", "Blizzard"], + "chance": 95 + }, + { + "char": ["T", "V", "A"], + "type": "G", + "ingredients": ["Sliding Dash", "Blizzara"], + "chance": 95 + } + ] + }, + { + "name": "Stun Edge", + "category": "attack", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "K", + "ingredients": ["Sliding Dash", "Thunder"], + "chance": 95 + }, + { + "char": ["T", "V", "A"], + "type": "L", + "ingredients": ["Strike Raid", "Thunder"], + "chance": 95 + }, + { + "char": ["T", "V", "A"], + "type": "K", + "ingredients": ["Strike Raid", "Thundara"], + "chance": 95 + } + ] + }, + { + "name": "Slot Edge", + "category": "attack", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["A"], + "type": "O", + "ingredients": ["Wishing Edge", "Cure"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "P", + "ingredients": ["Poison Edge", "Cura"], + "chance": 95 + }, + { + "char": ["T", "V", "A"], + "type": "G", + "ingredients": ["Blizzard Edge", "Cura"], + "chance": 95 + }, + { + "char": ["T", "V"], + "type": "N", + "ingredients": ["Curaga", "Renewal Block"], + "chance": 90 + }, + { + "char": ["T", "V"], + "type": "P", + "ingredients": ["Curaga", "Focus Block"], + "chance": 90 + }, + { + "char": ["A"], + "type": "N", + "ingredients": ["Curaga", "Renewal Barrier"], + "chance": 90 + }, + { + "char": ["A"], + "type": "P", + "ingredients": ["Curaga", "Focus Barrier"], + "chance": 90 + } + ] + }, + { + "name": "Fire Strike", + "category": "attack", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "D", + "ingredients": ["Poison Edge", "Fira"], + "chance": 100 + }, + { + "char": ["A"], + "type": "A", + "ingredients": ["Wishing Edge", "Ignite"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "K", + "ingredients": ["Stun Edge", "Fire"], + "chance": 100 + } + ] + }, + { + "name": "Confusion Strike", + "category": "attack", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "O", + "ingredients": ["Quick Blitz", "Confuse"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "K", + "ingredients": ["Sliding Dash", "Zero Gravity"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "G", + "ingredients": ["Strike Raid", "Confuse"], + "chance": 100 + } + ] + }, + { + "name": "Binding Strike", + "category": "attack", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "K", + "ingredients": ["Quick Blitz", "Bind"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "O", + "ingredients": ["Strike Raid", "Bind"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "I", + "ingredients": ["Stun Edge", "Zero Gravity"], + "chance": 100 + } + ] + }, + { + "name": "Brutal Blast", + "category": "attack", + "char": ["T"], + "recipes": [ + { + "char": ["T"], + "type": "O", + "ingredients": ["Stun Edge", "Mine Shield"], + "chance": 70 + }, + { + "char": ["T"], + "type": "L", + "ingredients": ["Binding Strike", "Mine Square"], + "chance": 70 + } + ] + }, + { + "name": "Tornado Strike", + "category": "attack", + "char": ["V"], + "recipes": [ + { + "char": ["V"], + "type": "G", + "ingredients": ["Confusion Strike", "Aeroga"], + "chance": 100 + }, + { + "char": ["V"], + "type": "F", + "ingredients": ["Binding Strike", "Aeroga"], + "chance": 100 + } + ] + }, + { + "name": "Magnet Spiral", + "category": "attack", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "K", + "ingredients": ["Binding Strike", "Collision Magnet"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "J", + "ingredients": ["Binding Strike", "Magnega"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "K", + "ingredients": ["Quick Blitz", "Magnera"], + "chance": 20 + }, + { + "char": ["T", "V", "A"], + "type": "L", + "ingredients": ["Stun Edge", "Magnera"], + "chance": 20 + }, + { + "char": ["T", "V", "A"], + "type": "I", + "ingredients": ["Zero Gravira", "Magnet"], + "chance": 20 + } + ] + }, + { + "name": "Windcutter", + "category": "attack", + "char": ["T"], + "recipes": [ + { + "char": ["T"], + "type": "F", + "ingredients": ["Binding Strike", "Aeroga"], + "chance": 100 + }, + { + "char": ["T"], + "type": "G", + "ingredients": ["Confusion Strike", "Aeroga"], + "chance": 100 + } + ] + }, + { + "name": "Limit Storm", + "category": "attack", + "char": ["T"], + "recipes": [ + { + "char": ["T"], + "type": "G", + "ingredients": ["Brutal Blast", "Confusion Strike"], + "chance": 100 + }, + { + "char": ["T"], + "type": "D", + "ingredients": ["Brutal Blast", "Binding Strike"], + "chance": 100 + } + ] + }, + { + "name": "Salvation", + "category": "attack", + "char": ["V"], + "recipes": [ + { + "char": ["V"], + "type": "N", + "ingredients": ["Wind Raid", "Curaga"], + "chance": 100 + } + ] + }, + { + "name": "Collision Magnet", + "category": "attack", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "K", + "ingredients": ["Quick Blitz", "Magnera"], + "chance": 80 + }, + { + "char": ["T", "V", "A"], + "type": "L", + "ingredients": ["Stun Edge", "Magnera"], + "chance": 80 + }, + { + "char": ["T", "V", "A"], + "type": "I", + "ingredients": ["Zero Gravira", "Magnet"], + "chance": 80 + } + ] + }, + { + "name": "Geo Impact", + "category": "attack", + "char": ["T"], + "recipes": [ + { + "char": ["T"], + "type": "N", + "ingredients": ["Brutal Blast", "Brutal Blast"], + "chance": 70 + } + ] + }, + { + "name": "Sacrifice", + "category": "attack", + "char": ["T"], + "recipes": [ + { + "char": ["T"], + "type": "B", + "ingredients": ["Dark Haze", "Warp"], + "chance": 100 + }, + { + "char": ["T"], + "type": "D", + "ingredients": ["Poison Edge", "Warp"], + "chance": 100 + } + ] + }, + { + "name": "Break Time", + "category": "attack", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V"], + "type": "N", + "ingredients": ["Curaga", "Renewal Block"], + "chance": 10 + }, + { + "char": ["A"], + "type": "N", + "ingredients": ["Curaga", "Renewal Barrier"], + "chance": 10 + }, + { + "char": ["T", "V"], + "type": "P", + "ingredients": ["Curaga", "Focus Block"], + "chance": 10 + }, + { + "char": ["A"], + "type": "P", + "ingredients": ["Curaga", "Focus Barrier"], + "chance": 10 + } + ] + }, + { + "name": "Fira", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "D", + "ingredients": ["Fire Dash", "Fire"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "D", + "ingredients": ["Fire Strike", "Fire"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "A", + "ingredients": ["Fire", "Fire"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "C", + "ingredients": ["Fire", "Ignite"], + "chance": 100 + } + ] + }, + { + "name": "Firaga", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "D", + "ingredients": ["Fire Dash", "Fira"], + "chance": 90 + }, + { + "char": ["T", "V", "A"], + "type": "A", + "ingredients": ["Fire", "Fira"], + "chance": 90 + }, + { + "char": ["T", "V", "A"], + "type": "B", + "ingredients": ["Fira", "Fira"], + "chance": 90 + } + ] + }, + { + "name": "Dark Firaga", + "category": "magic", + "char": ["T"], + "recipes": [ + { + "char": ["T"], + "type": "D", + "ingredients": ["Dark Haze", "Firaga"], + "chance": 100 + }, + { + "char": ["T"], + "type": "B", + "ingredients": ["Firaga", "Blackout"], + "chance": 100 + } + ] + }, + { + "name": "Fission Firaga", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "A", + "ingredients": ["Fira", "Aeroga"], + "chance": 80 + }, + { + "char": ["T", "V", "A"], + "type": "A", + "ingredients": ["Firaga", "Aerora"], + "chance": 80 + }, + { + "char": ["T", "V", "A"], + "type": "B", + "ingredients": ["Firaga", "Aeroga"], + "chance": 80 + } + ] + }, + { + "name": "Triple Firaga", + "category": "magic", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "A", + "ingredients": ["Fira", "Firaga"], + "chance": 95 + }, + { + "char": ["A"], + "type": "D", + "ingredients": ["Blitz", "Firaga"], + "chance": 90 + }, + { + "char": ["A"], + "type": "B", + "ingredients": ["Firaga", "Firaga"], + "chance": 90 + } + ] + }, + { + "name": "Crawling Fire", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "A", + "ingredients": ["Firaga", "Slow"], + "chance": 80 + }, + { + "char": ["T", "V", "A"], + "type": "D", + "ingredients": ["Firaga", "Stopra"], + "chance": 80 + }, + { + "char": ["T", "V", "A"], + "type": "B", + "ingredients": ["Firaga", "Stopga"], + "chance": 80 + } + ] + }, + { + "name": "Blizzara", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "G", + "ingredients": ["Strike Raid", "Blizzard"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "G", + "ingredients": ["Blizzard Edge", "Blizzard"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "E", + "ingredients": ["Blizzard", "Blizzard"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "H", + "ingredients": ["Blizzard", "Aero"], + "chance": 100 + } + ] + }, + { + "name": "Blizzaga", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "G", + "ingredients": ["Blizzard Edge", "Blizzara"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "E", + "ingredients": ["Blizzard", "Blizzara"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "F", + "ingredients": ["Blizzara", "Blizzara"], + "chance": 100 + } + ] + }, + { + "name": "Triple Blizzaga", + "category": "magic", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "G", + "ingredients": ["Blitz", "Blizzaga"], + "chance": 100 + }, + { + "char": ["A"], + "type": "E", + "ingredients": ["Blizzara", "Blizzaga"], + "chance": 100 + }, + { + "char": ["A"], + "type": "F", + "ingredients": ["Blizzaga", "Blizzaga"], + "chance": 100 + } + ] + }, + { + "name": "Thundara", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "K", + "ingredients": ["Stun Edge", "Thunder"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "I", + "ingredients": ["Thunder", "Thunder"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "L", + "ingredients": ["Zero Gravity", "Magnet"], + "chance": 100 + } + ] + }, + { + "name": "Thundaga", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "K", + "ingredients": ["Binding Strike", "Thundara"], + "chance": 90 + }, + { + "char": ["T", "V", "A"], + "type": "I", + "ingredients": ["Thunder", "Thundara"], + "chance": 90 + }, + { + "char": ["T", "V", "A"], + "type": "J", + "ingredients": ["Thundara", "Thundara"], + "chance": 90 + } + ] + }, + { + "name": "Thundaga Shot", + "category": "magic", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "I", + "ingredients": ["Strike Raid", "Thundaga"], + "chance": 85 + }, + { + "char": ["A"], + "type": "E", + "ingredients": ["Freeze Raid", "Thundaga"], + "chance": 85 + }, + { + "char": ["A"], + "type": "A", + "ingredients": ["Firaga", "Thundaga"], + "chance": 85 + } + ] + }, + { + "name": "Cura", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "I", + "ingredients": ["Thunder", "Cure"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "M", + "ingredients": ["Cure", "Cure"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "O", + "ingredients": ["Cure", "Aero"], + "chance": 100 + } + ] + }, + { + "name": "Curaga", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "M", + "ingredients": ["Cure", "Cura"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "N", + "ingredients": ["Cura", "Cura"], + "chance": 100 + } + ] + }, + { + "name": "Mine Shield", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "A", + "ingredients": ["Fira", "Zero Gravity"], + "chance": 100 + }, + { + "char": ["T", "V"], + "type": "C", + "ingredients": ["Fira", "Block"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "D", + "ingredients": ["Ignite", "Stop"], + "chance": 100 + }, + { + "char": ["T", "V"], + "type": "M", + "ingredients": ["Stopra", "Block"], + "chance": 100 + } + ] + }, + { + "name": "Mine Square", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "A", + "ingredients": ["Fira", "Stop"], + "chance": 100 + }, + { + "char": ["A"], + "type": "C", + "ingredients": ["Fira", "Barrier"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "D", + "ingredients": ["Aerora", "Ignite"], + "chance": 100 + }, + { + "char": ["A"], + "type": "M", + "ingredients": ["Stopra", "Barrier"], + "chance": 100 + } + ] + }, + { + "name": "Seeker Mine", + "category": "magic", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "B", + "ingredients": ["Mine Shield", "Mine Square"], + "chance": 100 + }, + { + "char": ["A"], + "type": "C", + "ingredients": ["Mine Shield", "Magnega"], + "chance": 100 + }, + { + "char": ["A"], + "type": "D", + "ingredients": ["Mine Square", "Magnega"], + "chance": 100 + } + ] + }, + { + "name": "Zero Gravira", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "I", + "ingredients": ["Thunder", "Zero Gravity"], + "chance": 90 + }, + { + "char": ["T", "V", "A"], + "type": "M", + "ingredients": ["Zero Gravity", "Zero Gravity"], + "chance": 90 + }, + { + "char": ["T", "V", "A"], + "type": "P", + "ingredients": ["Magnet", "Aero"], + "chance": 90 + } + ] + }, + { + "name": "Zero Graviga", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "I", + "ingredients": ["Thundara", "Zero Gravira"], + "chance": 80 + }, + { + "char": ["T", "V", "A"], + "type": "M", + "ingredients": ["Zero Gravity", "Zero Gravira"], + "chance": 80 + }, + { + "char": ["T", "V", "A"], + "type": "N", + "ingredients": ["Zero Gravira", "Zero Gravira"], + "chance": 80 + } + ] + }, + { + "name": "Magnera", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "K", + "ingredients": ["Stun Edge", "Magnet"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "I", + "ingredients": ["Thunder", "Magnet"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "M", + "ingredients": ["Magnet", "Magnet"], + "chance": 100 + } + ] + }, + { + "name": "Magnega", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "I", + "ingredients": ["Magnet", "Magnera"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "J", + "ingredients": ["Magnera", "Magnera"], + "chance": 100 + } + ] + }, + { + "name": "Munny Magnet", + "category": "magic", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "K", + "ingredients": ["Wishing Edge", "Magnera"], + "chance": 100 + }, + { + "char": ["A"], + "type": "I", + "ingredients": ["Thundara", "Magnera"], + "chance": 100 + } + ] + }, + { + "name": "Energy Magnet", + "category": "magic", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "M", + "ingredients": ["Cure", "Magnera"], + "chance": 100 + }, + { + "char": ["A"], + "type": "N", + "ingredients": ["Cura", "Magnera"], + "chance": 100 + } + ] + }, + { + "name": "D-Link Magnet", + "category": "magic", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "L", + "ingredients": ["Zero Gravira", "Magnera"], + "chance": 100 + }, + { + "char": ["A"], + "type": "I", + "ingredients": ["Magnera", "Stopra"], + "chance": 100 + } + ] + }, + { + "name": "Aerora", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "G", + "ingredients": ["Quick Blitz", "Aero"], + "chance": 95 + }, + { + "char": ["T", "V", "A"], + "type": "I", + "ingredients": ["Thunder", "Aero"], + "chance": 95 + }, + { + "char": ["T", "V", "A"], + "type": "E", + "ingredients": ["Aero", "Aero"], + "chance": 95 + } + ] + }, + { + "name": "Aeroga", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "O", + "ingredients": ["Quick Blitz", "Aerora"], + "chance": 90 + }, + { + "char": ["T", "V", "A"], + "type": "M", + "ingredients": ["Aero", "Aerora"], + "chance": 90 + }, + { + "char": ["T", "V", "A"], + "type": "N", + "ingredients": ["Aerora", "Aerora"], + "chance": 90 + } + ] + }, + { + "name": "Warp", + "category": "magic", + "char": ["T"], + "recipes": [ + { + "char": ["T"], + "type": "I", + "ingredients": ["Thundara", "Zero Gravira"], + "chance": 20 + }, + { + "char": ["T"], + "type": "M", + "ingredients": ["Zero Gravity", "Zero Gravira"], + "chance": 20 + }, + { + "char": ["T"], + "type": "N", + "ingredients": ["Zero Gravira", "Zero Gravira"], + "chance": 20 + }, + { + "char": ["T"], + "type": "I", + "ingredients": ["Thunder", "Zero Gravity"], + "chance": 10 + }, + { + "char": ["T"], + "type": "P", + "ingredients": ["Magnet", "Aero"], + "chance": 10 + }, + { + "char": ["T"], + "type": "M", + "ingredients": ["Zero Gravity", "Zero Gravity"], + "chance": 10 + } + ] + }, + { + "name": "Faith", + "category": "magic", + "char": ["V"], + "recipes": [ + { + "char": ["V"], + "type": "N", + "ingredients": ["Wind Raid", "Break Time"], + "chance": 100 + } + ] + }, + { + "name": "Deep Freeze", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "G", + "ingredients": ["Freeze Raid", "Blizzaga"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "H", + "ingredients": ["Binding Strike", "Blizzaga"], + "chance": 100 + }, + { + "char": ["A"], + "type": "F", + "ingredients": ["Blizzaga", "Triple Blizzaga"], + "chance": 100 + } + ] + }, + { + "name": "Glacier", + "category": "magic", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "E", + "ingredients": ["Blizzaga", "Deep Freeze"], + "chance": 100 + }, + { + "char": ["A"], + "type": "F", + "ingredients": ["Triple Blizzaga", "Deep Freeze"], + "chance": 100 + } + ] + }, + { + "name": "Ice Barrage", + "category": "magic", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "F", + "ingredients": ["Blizzaga", "Mine Shield"], + "chance": 100 + }, + { + "char": ["A"], + "type": "H", + "ingredients": ["Blizzaga", "Mine Square"], + "chance": 100 + } + ] + }, + { + "name": "Firaga Burst", + "category": "magic", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "A", + "ingredients": ["Fira", "Aeroga"], + "chance": 20 + }, + { + "char": ["A"], + "type": "A", + "ingredients": ["Firaga", "Aerora"], + "chance": 20 + }, + { + "char": ["A"], + "type": "B", + "ingredients": ["Firaga", "Aeroga"], + "chance": 20 + }, + { + "char": ["A"], + "type": "A", + "ingredients": ["Firaga", "Slow"], + "chance": 20 + }, + { + "char": ["A"], + "type": "D", + "ingredients": ["Firaga", "Stopra"], + "chance": 20 + }, + { + "char": ["A"], + "type": "B", + "ingredients": ["Firaga", "Stopga"], + "chance": 20 + } + ] + }, + { + "name": "Raging Storm", + "category": "magic", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "B", + "ingredients": ["Fission Firaga", "Firaga Burst"], + "chance": 100 + }, + { + "char": ["A"], + "type": "D", + "ingredients": ["Blitz", "Firaga"], + "chance": 10 + }, + { + "char": ["A"], + "type": "D", + "ingredients": ["Fire Dash", "Fira"], + "chance": 10 + }, + { + "char": ["A"], + "type": "C", + "ingredients": ["Fire Surge", "Cartwheel"], + "chance": 10 + }, + { + "char": ["A"], + "type": "A", + "ingredients": ["Fire", "Fira"], + "chance": 10 + }, + { + "char": ["A"], + "type": "B", + "ingredients": ["Fira", "Fira"], + "chance": 10 + }, + { + "char": ["A"], + "type": "A", + "ingredients": ["Fira", "Firaga"], + "chance": 10 + }, + { + "char": ["A"], + "type": "B", + "ingredients": ["Firaga", "Firaga"], + "chance": 10 + } + ] + }, + { + "name": "Mega Flare", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "B", + "ingredients": ["Fission Firaga", "Crawling Fire"], + "chance": 100 + } + ] + }, + { + "name": "Quake", + "category": "magic", + "char": ["T"], + "recipes": [ + { + "char": ["T"], + "type": "B", + "ingredients": ["Brutal Blast", "Zero Graviga"], + "chance": 90 + }, + { + "char": ["T"], + "type": "C", + "ingredients": ["Brutal Blast", "Magnega"], + "chance": 90 + }, + { + "char": ["T"], + "type": "O", + "ingredients": ["Stun Edge", "Mine Shield"], + "chance": 30 + }, + { + "char": ["T"], + "type": "L", + "ingredients": ["Binding Strike", "Mine Square"], + "chance": 30 + }, + { + "char": ["T"], + "type": "N", + "ingredients": ["Brutal Blast", "Brutal Blast"], + "chance": 30 + } + ] + }, + { + "name": "Meteor", + "category": "magic", + "char": ["T"], + "recipes": [ + { + "char": ["T"], + "type": "B", + "ingredients": ["Geo Impact", "Quake"], + "chance": 100 + }, + { + "char": ["T"], + "type": "B", + "ingredients": ["Brutal Blast", "Zero Graviga"], + "chance": 10 + }, + { + "char": ["T"], + "type": "C", + "ingredients": ["Brutal Blast", "Magnega"], + "chance": 10 + } + ] + }, + { + "name": "Tornado", + "category": "magic", + "char": ["V"], + "recipes": [ + { + "char": ["V"], + "type": "N", + "ingredients": ["Magnega", "Aeroga"], + "chance": 100 + }, + { + "char": ["V"], + "type": "O", + "ingredients": ["Quick Blitz", "Aerora"], + "chance": 10 + }, + { + "char": ["V"], + "type": "M", + "ingredients": ["Aero", "Aerora"], + "chance": 10 + }, + { + "char": ["V"], + "type": "N", + "ingredients": ["Aerora", "Aerora"], + "chance": 10 + }, + { + "char": ["V"], + "type": "G", + "ingredients": ["Quick Blitz", "Aero"], + "chance": 5 + }, + { + "char": ["V"], + "type": "I", + "ingredients": ["Thunder", "Aero"], + "chance": 5 + }, + { + "char": ["V"], + "type": "E", + "ingredients": ["Aero", "Aero"], + "chance": 5 + } + ] + }, + { + "name": "Transcendence", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "J", + "ingredients": ["Magnet Spiral", "Zero Graviga"], + "chance": 100 + } + ] + }, + { + "name": "Mini", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T"], + "type": "N", + "ingredients": ["Magnera", "Warp"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "J", + "ingredients": ["Magnega", "Magnega"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "I", + "ingredients": ["Magnega", "Bind"], + "chance": 100 + } + ] + }, + { + "name": "Blackout", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "M", + "ingredients": ["Zero Gravity", "Confuse"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "N", + "ingredients": ["Zero Gravira", "Confuse"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "P", + "ingredients": ["Zero Gravira", "Poison"], + "chance": 100 + } + ] + }, + { + "name": "Ignite", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "A", + "ingredients": ["Fire", "Bind"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "C", + "ingredients": ["Fira", "Bind"], + "chance": 100 + } + ] + }, + { + "name": "Stopra", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "L", + "ingredients": ["Slow", "Slow"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "K", + "ingredients": ["Slow", "Stop"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "I", + "ingredients": ["Stop", "Stop"], + "chance": 100 + } + ] + }, + { + "name": "Stopga", + "category": "magic", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "I", + "ingredients": ["Stop", "Stopra"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "J", + "ingredients": ["Stopra", "Stopra"], + "chance": 100 + } + ] + }, + { + "name": "Homing Slide", + "category": "action", + "char": ["V", "A"], + "recipes": [ + { + "char": ["V", "A"], + "type": "P", + "ingredients": ["Sliding Dash", "Magnera"], + "chance": 100 + }, + { + "char": ["V", "A"], + "type": "C", + "ingredients": ["Sliding Dash", "Air Slide"], + "chance": 100 + }, + { + "char": ["V", "A"], + "type": "L", + "ingredients": ["Magnet", "Air Slide"], + "chance": 100 + } + ] + }, + { + "name": "Thunder Roll", + "category": "action", + "char": ["V"], + "recipes": [ + { + "char": ["V"], + "type": "P", + "ingredients": ["Thunder Surge", "Dodge Roll"], + "chance": 80 + }, + { + "char": ["V"], + "type": "L", + "ingredients": ["Thundaga", "Dodge Roll"], + "chance": 80 + }, + { + "char": ["V"], + "type": "L", + "ingredients": ["Stun Block", "Dodge Roll"], + "chance": 80 + } + ] + }, + { + "name": "Firewheel", + "category": "action", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "B", + "ingredients": ["Firaga", "Cartwheel"], + "chance": 100 + }, + { + "char": ["A"], + "type": "B", + "ingredients": ["Fission Firaga", "Cartwheel"], + "chance": 100 + }, + { + "char": ["A"], + "type": "C", + "ingredients": ["Fire Surge", "Cartwheel"], + "chance": 90 + } + ] + }, + { + "name": "Ice Slide", + "category": "action", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V", "A"], + "type": "F", + "ingredients": ["Blizzard Edge", "Air Slide"], + "chance": 100 + }, + { + "char": ["T", "V", "A"], + "type": "H", + "ingredients": ["Blizzaga", "Air Slide"], + "chance": 100 + } + ] + }, + { + "name": "Fire Glide", + "category": "action", + "char": ["V"], + "recipes": [ + { + "char": ["V"], + "type": "C", + "ingredients": ["Fire Surge", "Glide"], + "chance": 100 + }, + { + "char": ["V"], + "type": "B", + "ingredients": ["Firaga", "Glide"], + "chance": 100 + } + ] + }, + { + "name": "Renewal Block", + "category": "action", + "char": ["T", "V"], + "recipes": [ + { + "char": ["T", "V"], + "type": "P", + "ingredients": ["Curaga", "Block"], + "chance": 100 + }, + { + "char": ["T", "V"], + "type": "C", + "ingredients": ["Esuna", "Block"], + "chance": 100 + } + ] + }, + { + "name": "Stun Block", + "category": "action", + "char": ["T", "V"], + "recipes": [ + { + "char": ["T", "V"], + "type": "L", + "ingredients": ["Stun Edge", "Block"], + "chance": 100 + }, + { + "char": ["T", "V"], + "type": "I", + "ingredients": ["Thundaga", "Block"], + "chance": 100 + } + ] + }, + { + "name": "Poison Block", + "category": "action", + "char": ["T", "V"], + "recipes": [ + { + "char": ["T", "V"], + "type": "H", + "ingredients": ["Poison Edge", "Block"], + "chance": 80 + }, + { + "char": ["T", "V"], + "type": "P", + "ingredients": ["Poison", "Block"], + "chance": 80 + } + ] + }, + { + "name": "Renewal Barrier", + "category": "action", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "P", + "ingredients": ["Curaga", "Barrier"], + "chance": 100 + }, + { + "char": ["A"], + "type": "N", + "ingredients": ["Esuna", "Barrier"], + "chance": 100 + } + ] + }, + { + "name": "Confuse Barrier", + "category": "action", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "C", + "ingredients": ["Confusion Strike", "Barrier"], + "chance": 100 + }, + { + "char": ["A"], + "type": "L", + "ingredients": ["Confuse", "Barrier"], + "chance": 100 + } + ] + }, + { + "name": "Stop Barrier", + "category": "action", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "C", + "ingredients": ["Stopga", "Barrier"], + "chance": 80 + } + ] + }, + { + "name": "Payback Fang", + "category": "action", + "char": ["T"], + "recipes": [ + { + "char": ["T"], + "type": "P", + "ingredients": ["Sliding Dash", "Counter Hammer"], + "chance": 100 + } + ] + }, + { + "name": "Payback Raid", + "category": "action", + "char": ["V"], + "recipes": [ + { + "char": ["V"], + "type": "P", + "ingredients": ["Sliding Dash", "Strike Raid"], + "chance": 100 + } + ] + }, + { + "name": "Payback Surge", + "category": "action", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "C", + "ingredients": ["Sliding Dash", "Fire Surge"], + "chance": 100 + }, + { + "char": ["A"], + "type": "L", + "ingredients": ["Sliding Dash", "Thunder Surge"], + "chance": 100 + } + ] + }, + { + "name": "Lightning Ray", + "category": "shotlock", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T"], + "type": "-", + "ingredients": ["Blitz", "Dark Haze"], + "chance": 10 + }, + { + "char": ["T", "V", "A"], + "type": "-", + "ingredients": ["Blitz", "Air Slide"], + "chance": 10 + }, + { + "char": ["T", "V", "A"], + "type": "-", + "ingredients": ["Fire Dash", "Thunder Surge"], + "chance": 10 + }, + { + "char": ["T", "V", "A"], + "type": "-", + "ingredients": ["Binding Strike", "Thundara"], + "chance": 10 + }, + { + "char": ["T", "V", "A"], + "type": "-", + "ingredients": ["Thunder", "Thundara"], + "chance": 10 + }, + { + "char": ["T", "V", "A"], + "type": "-", + "ingredients": ["Thundara", "Thundara"], + "chance": 10 + }, + { + "char": ["A"], + "type": "-", + "ingredients": ["Aeroga", "Barrier Surge"], + "chance": 10 + } + ] + }, + { + "name": "Meteor Shower", + "category": "shotlock", + "char": ["A"], + "recipes": [ + { + "char": ["A"], + "type": "-", + "ingredients": ["Strike Raid", "Thundaga"], + "chance": 15 + }, + { + "char": ["A"], + "type": "-", + "ingredients": ["Freeze Raid", "Thundaga"], + "chance": 15 + }, + { + "char": ["A"], + "type": "-", + "ingredients": ["Firaga", "Thundaga"], + "chance": 15 + }, + { + "char": ["A"], + "type": "-", + "ingredients": ["Blitz", "Zero Graviga"], + "chance": 10 + } + ] + }, + { + "name": "Bio Barrage", + "category": "shotlock", + "char": ["T", "V", "A"], + "recipes": [ + { + "char": ["T", "V"], + "type": "-", + "ingredients": ["Poison Edge", "Block"], + "chance": 20 + }, + { + "char": ["T", "V"], + "type": "-", + "ingredients": ["Poison", "BLock"], + "chance": 20 + }, + { + "char": ["T", "V", "A"], + "type": "-", + "ingredients": ["Quick Blitz", "Poison"], + "chance": 5 + }, + { + "char": ["T", "V", "A"], + "type": "-", + "ingredients": ["Sliding Dash", "Poison"], + "chance": 5 + }, + { + "char": ["T", "V", "A"], + "type": "-", + "ingredients": ["Strike Raid", "Poison"], + "chance": 5 + } + ] + } +] diff --git a/finish-commands.json b/finish-commands.json new file mode 100644 index 0000000..137b01b --- /dev/null +++ b/finish-commands.json @@ -0,0 +1,225 @@ +{ + "finish": { + "name": "Finish", + "char": ["A", "V", "T"], + "level": 1, + "goal": "Unlocked from the start", + "color": "blue" + }, + "heat-slash-1": { + "name": "Heat Slash 1", + "char": ["A", "V", "T"], + "level": 2, + "follows": ["finish"], + "goal": "Activate the Firestorm Command Style 8 times", + "color": "red" + }, + "heat-slash-2": { + "name": "Heat Slash 2", + "char": ["A"], + "level": 3, + "follows": ["heat-slash-1"], + "goal": "Activate the Firestorm Command Style 12 times", + "color": "red" + }, + "rising-rock-1": { + "name": "Rising Rock 1", + "char": ["T"], + "level": 2, + "follows": ["finish"], + "goal": "Earn 2000 CP", + "color": "brown" + }, + "rising-rock-2": { + "name": "Rising Rock 2", + "char": ["T"], + "level": 3, + "follows": ["rising-rock-1"], + "goal": "Earn 4200 CP", + "color": "brown" + }, + "dark-star-1": { + "name": "Dark Star 1", + "char": ["T"], + "level": 4, + "follows": ["rising-rock-2"], + "goal": "Defeat 420 enemies", + "color": "brown" + }, + "dark-star-2": { + "name": "Dark Star 2", + "char": ["T"], + "level": 5, + "follows": ["dark-star-1"], + "goal": "Defeat 550 enemies", + "color": "brown" + }, + "air-flair-1": { + "name": "Air Flair 1", + "char": ["V"], + "level": 2, + "follows": ["finish"], + "goal": "Earn 2000 CP", + "color": "blue" + }, + "air-flair-2": { + "name": "Air Flair 2", + "char": ["V"], + "level": 3, + "follows": ["air-flair-1"], + "goal": "Earn 4000 CP", + "color": "blue" + }, + "air-flair-3": { + "name": "Air Flair 3", + "char": ["V"], + "level": 4, + "follows": ["air-flair-2"], + "goal": "Take 4500 steps", + "color": "blue" + }, + "air-flair-4": { + "name": "Air Flair 4", + "char": ["V"], + "level": 5, + "follows": ["air-flair-3"], + "goal": "Take 7000 steps", + "color": "blue" + }, + "magic-pulse-1": { + "name": "Magic Pulse 1", + "char": ["A"], + "level": 2, + "follows": ["finish"], + "goal": "Earn 2000 CP", + "color": "purple" + }, + "magic-pulse-2": { + "name": "Magic Pulse 2", + "char": ["A"], + "level": 3, + "follows": ["magic-pulse-1"], + "goal": "Earn 3800 CP", + "color": "purple" + }, + "magic-pulse-3": { + "name": "Magic Pulse 3", + "char": ["A"], + "level": 4, + "follows": ["magic-pulse-2"], + "goal": "Defeat 350 enemies", + "color": "purple" + }, + "magic-pulse-4": { + "name": "Magic Pulse 4", + "char": ["A"], + "level": 5, + "follows": ["magic-pulse-3"], + "goal": "Defeat 500 enemies", + "color": "purple" + }, + "gold-rush": { + "name": "Gold Rush", + "char": ["A", "V", "T"], + "level": 2, + "follows": ["finish"], + "goal": "Collect 1000 munny", + "color": "yellow" + }, + "ramuhs-judgement": { + "name": "Ramuh's Judgement", + "char": ["A", "V", "T"], + "level": 3, + "follows": ["air-flair-1", "magic-pulse-1", "rising-rock-1"], + "goal": "Activate the Thunderbolt Command Style 12 times", + "color": "green" + }, + "twisted-hours": { + "name": "Twisted Hours", + "char": ["A", "V", "T"], + "level": 3, + "follows": ["air-flair-1", "magic-pulse-1", "rising-rock-1", "gold-rush"], + "goal": "Take 7000 steps", + "color": "gray" + }, + "surprise-1": { + "name": "Surprise! 1", + "char": ["A", "V", "T"], + "level": 3, + "follows": ["gold-rush"], + "goal": "Collect 1400 munny", + "color": "yellow" + }, + "surprise-2": { + "name": "Surprise! 2", + "char": ["A", "V", "T"], + "level": 4, + "follows": ["twisted-hours", "surprise-1"], + "goal": "Collect 5200 munny", + "color": "yellow" + }, + "heal-strike": { + "name": "Heal Strike", + "char": ["A", "V", "T"], + "level": 4, + "follows": ["rising-rock-2", "air-flair-2", "magic-pulse-2"], + "goal": "Use the effect of Second Chance or Once More to survive lethal damage 5 times", + "color": "green" + }, + "random-end": { + "name": "Random End", + "char": ["T"], + "level": 4, + "follows": ["twisted-hours"], + "goal": "Take 8000 steps", + "color": "gray" + }, + "explosion": { + "name": "Explosion", + "char": ["A", "V", "T"], + "level": 5, + "follows": ["dark-star-1", "air-flair-3", "magic-pulse-3"], + "goal": "Earn 6400 CP", + "color": "orange" + }, + "celebration": { + "name": "Celebration", + "char": ["V"], + "level": 5, + "follows": ["surprise-2"], + "goal": "Collect 7000 munny", + "color": "yellow" + }, + "ice-burst": { + "name": "Ice Burst", + "char": ["A"], + "level": 5, + "follows": ["magic-pulse-3"], + "goal": "Activate the Diamond Dust Command Style 15 times", + "color": "cyan" + }, + "demolition": { + "name": "Demolition", + "char": ["T"], + "level": 6, + "follows": ["dark-star-2"], + "goal": "Earn 10000 CP", + "color": "dark-blue" + }, + "stratosphere": { + "name": "Stratosphere", + "char": ["V"], + "level": 6, + "follows": ["air-flair-4"], + "goal": "Defeat 800 enemies", + "color": "white" + }, + "teleport-spike": { + "name": "Teleport Spike", + "char": ["A"], + "level": 6, + "follows": ["magic-pulse-4"], + "goal": "Defeat 800 enemies", + "color": "pink" + } +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..c808698 --- /dev/null +++ b/index.html @@ -0,0 +1,21760 @@ + + + + Commands + + + + + + + + +
+ +
+ + + + + + + + +
+ + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
CharacterCommandIngredient AIngredient BTypeChanceAbilities
Abounding CrystalFleeting CrystalHungry CrystalPulsing CrystalShimmering CrystalSoothing CrystalWellspring Crystal
+
+ + + + + + + + + A + +
+
BlitzWishing EdgeBarrier SurgeP90% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + + +
+
BlitzQuick BlitzSlot EdgeO90% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + + + + A + +
+
BlitzQuick BlitzSlot EdgeO100% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + + +
+
BlitzStun EdgeSlot EdgeK90% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + + + + A + +
+
BlitzStun EdgeSlot EdgeK100% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
Meteor CrashQuakeBlitzN100% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
Meteor CrashFire StrikeBrutal BlastD100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Magic HourAerogaBarrier SurgeN90% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Magic HourZero GravigaBlitzO90% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Fire DashSliding DashFireD100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Fire DashSliding DashFiraC100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Fire DashConfusion StrikeFireD100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
Dark HazeFire DashZero GraviraD100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
Dark HazeFire DashBlackoutA100% + + Link Prize Plus + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + + + + + +
+
Dark HazeFire SurgeZero GravityC100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
Sonic BladeBlitzDark HazeD90% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Sonic BladeBlitzAir SlideN90% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Sonic BladeFire DashThunder SurgeK90% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
Chaos BladeDark HazeSonic BladeB90% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + T + + + + + + + +
+
ZantetsukenDark HazeStopgaB80% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + T + + + + + + + +
+
ZantetsukenSonic BladeStopgaF80% + + Lucky Strike + + + + Reload Boost + + + + HP Prize Plus + + + + Second Chance + + + + Blizzard Boost + + + + Damage Syphon + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Strike RaidQuick BlitzSliding DashO100% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Freeze RaidStrike RaidBlizzaraI100% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Freeze RaidBlizzard EdgeBinding StrikeK100% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + V + + + + +
+
Treasure RaidStrike RaidSlot EdgeO100% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + + +
+
Treasure RaidSlot EdgeMagnetD100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + V + + + + +
+
Treasure RaidSlot EdgeMagneraK100% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + V + + + + +
+
Spark RaidFreeze RaidMagnegaJ100% + + Exp Chance + + + + Reload Boost + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + Defender + + + + Once More + +
+
+ + + + + + V + + + + +
+
Spark RaidTreasure RaidMagnegaN100% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + + + + V + + + + +
+
Spark RaidThunder SurgeDodge RollP20% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + + +
+
Spark RaidThundagaDodge RollL20% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + V + + + + +
+
Spark RaidDodge RollStun BlockL20% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + V + + + + +
+
Wind RaidFreeze RaidAerogaB100% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + + + + V + + + + +
+
Wind RaidTreasure RaidAerogaF100% + + Lucky Strike + + + + Reload Boost + + + + HP Prize Plus + + + + Second Chance + + + + Blizzard Boost + + + + Damage Syphon + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Fire SurgeFire DashIgniteD100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Fire SurgeFire DashFiraA100% + + Link Prize Plus + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Fire SurgeConfusion StrikeFiraO100% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Fire SurgeBinding StrikeFiraK100% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Barrier SurgeFire DashBarrierD100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Barrier SurgeStun EdgeBarrierK100% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Thunder SurgeFire DashThundaraD100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Thunder SurgeFreeze RaidThundaraG100% + + Lucky Strike + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Thunder SurgeStun EdgeThundaraI100% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Thunder SurgeConfusion StrikeThundaraI95% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + + + + + +
+
Ars SolumDark HazeSonic BladeB20% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + T + + + + + + + +
+
Ars SolumDark HazeStopgaB20% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + T + + + + + + + +
+
Ars SolumSonic BladeStopgaF20% + + Lucky Strike + + + + Reload Boost + + + + HP Prize Plus + + + + Second Chance + + + + Blizzard Boost + + + + Damage Syphon + + + + Air Combo Plus + +
+
+ + + T + + + + + + + +
+
Ars SolumSliding DashThunderK5% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
Ars SolumStrike RaidThunderL5% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
Ars SolumStrike RaidThundaraK5% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
Ars SolumConfusion StrikeThundaraI5% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + + +
+
Ars ArcanumBlitzAerial SlamF100% + + Lucky Strike + + + + Reload Boost + + + + HP Prize Plus + + + + Second Chance + + + + Blizzard Boost + + + + Damage Syphon + + + + Air Combo Plus + +
+
+ + + + + + V + + + + +
+
Ars ArcanumQuick BlitzSlot EdgeO10% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + + +
+
Ars ArcanumFire StrikeAeroraC10% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + V + + + + +
+
Ars ArcanumQuick BlitzBlizzardG5% + + Lucky Strike + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + + +
+
Ars ArcanumQuick BlitzBlizzaraH5% + + Exp Walker + + + + Magic Haste + + + + HP Prize Plus + + + + Combo F Boost + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + + +
+
Ars ArcanumSliding DashBlizzardE5% + + Lucky Strike + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + + + + V + + + + +
+
Ars ArcanumSliding DashBlizzaraG5% + + Lucky Strike + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + + +
+
Ars ArcanumPoison EdgeCuraP5% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + + +
+
Ars ArcanumBlizzard EdgeCuraG5% + + Lucky Strike + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + A + +
+
Time SplicerAerial SlamStopgaF100% + + Lucky Strike + + + + Reload Boost + + + + HP Prize Plus + + + + Second Chance + + + + Blizzard Boost + + + + Damage Syphon + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Time SplicerStopgaBarrierC20% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Time SplicerBarrier SurgeWishing EdgeP10% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + A + +
+
Time SplicerStun EdgeSlot EdgeK10% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Poison EdgeQuick BlitzPoisonO95% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Poison EdgeSliding DashPoisonK95% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Poison EdgeStrike RaidPoisonD95% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Wishing EdgeStrike RaidBarrier SurgeO100% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Wishing EdgeBarrier SurgeStun EdgeK100% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Wishing EdgeStun EdgeBinding StrikeJ100% + + Exp Chance + + + + Reload Boost + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + Defender + + + + Once More + +
+
+ + + T + + + V + + + A + +
+
Blizzard EdgeQuick BlitzBlizzardG95% + + Lucky Strike + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Blizzard EdgeQuick BlitzBlizzaraH95% + + Exp Walker + + + + Magic Haste + + + + HP Prize Plus + + + + Combo F Boost + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Blizzard EdgeSliding DashBlizzardE95% + + Lucky Strike + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Blizzard EdgeSliding DashBlizzaraG95% + + Lucky Strike + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Stun EdgeSliding DashThunderK95% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Stun EdgeStrike RaidThunderL95% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Stun EdgeStrike RaidThundaraK95% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Slot EdgeWishing EdgeCureO100% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Slot EdgePoison EdgeCuraP95% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Slot EdgeBlizzard EdgeCuraG95% + + Lucky Strike + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + + +
+
Slot EdgeCuragaRenewal BlockN90% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + T + + + V + + + + +
+
Slot EdgeCuragaFocus BlockP90% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Slot EdgeCuragaRenewal BarrierN90% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Slot EdgeCuragaFocus BarrierP90% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Fire StrikePoison EdgeFiraD100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Fire StrikeWishing EdgeIgniteA100% + + Link Prize Plus + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Fire StrikeStun EdgeFireK100% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Confusion StrikeQuick BlitzConfuseO100% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Confusion StrikeSliding DashZero GravityK100% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Confusion StrikeStrike RaidConfuseG100% + + Lucky Strike + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Binding StrikeQuick BlitzBindK100% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Binding StrikeStrike RaidBindO100% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Binding StrikeStun EdgeZero GravityI100% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + + + + + +
+
Brutal BlastStun EdgeMine ShieldO70% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + + + + + +
+
Brutal BlastBinding StrikeMine SquareL70% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + V + + + + +
+
Tornado StrikeConfusion StrikeAerogaG100% + + Lucky Strike + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + + +
+
Tornado StrikeBinding StrikeAerogaF100% + + Lucky Strike + + + + Reload Boost + + + + HP Prize Plus + + + + Second Chance + + + + Blizzard Boost + + + + Damage Syphon + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Magnet SpiralBinding StrikeCollision MagnetK100% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Magnet SpiralBinding StrikeMagnegaJ100% + + Exp Chance + + + + Reload Boost + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + Defender + + + + Once More + +
+
+ + + T + + + V + + + A + +
+
Magnet SpiralQuick BlitzMagneraK20% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Magnet SpiralStun EdgeMagneraL20% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Magnet SpiralZero GraviraMagnetI20% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + + + + + +
+
WindcutterBinding StrikeAerogaF100% + + Lucky Strike + + + + Reload Boost + + + + HP Prize Plus + + + + Second Chance + + + + Blizzard Boost + + + + Damage Syphon + + + + Air Combo Plus + +
+
+ + + T + + + + + + + +
+
WindcutterConfusion StrikeAerogaG100% + + Lucky Strike + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + + + + + +
+
Limit StormBrutal BlastConfusion StrikeG100% + + Lucky Strike + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + + + + + +
+
Limit StormBrutal BlastBinding StrikeD100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + V + + + + +
+
SalvationWind RaidCuragaN100% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Collision MagnetQuick BlitzMagneraK80% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Collision MagnetStun EdgeMagneraL80% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Collision MagnetZero GraviraMagnetI80% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + + + + + +
+
Geo ImpactBrutal BlastBrutal BlastN70% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
SacrificeDark HazeWarpB100% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + T + + + + + + + +
+
SacrificePoison EdgeWarpD100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + + +
+
Break TimeCuragaRenewal BlockN10% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Break TimeCuragaRenewal BarrierN10% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + T + + + V + + + + +
+
Break TimeCuragaFocus BlockP10% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Break TimeCuragaFocus BarrierP10% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
FiraFire DashFireD100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
FiraFire StrikeFireD100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
FiraFireFireA100% + + Link Prize Plus + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
FiraFireIgniteC100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
FiragaFire DashFiraD90% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
FiragaFireFiraA90% + + Link Prize Plus + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
FiragaFiraFiraB90% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + T + + + + + + + +
+
Dark FiragaDark HazeFiragaD100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
Dark FiragaFiragaBlackoutB100% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + T + + + V + + + A + +
+
Fission FiragaFiraAerogaA80% + + Link Prize Plus + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Fission FiragaFiragaAeroraA80% + + Link Prize Plus + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Fission FiragaFiragaAerogaB80% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + + + + + + + A + +
+
Triple FiragaFiraFiragaA95% + + Link Prize Plus + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Triple FiragaBlitzFiragaD90% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Triple FiragaFiragaFiragaB90% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + T + + + V + + + A + +
+
Crawling FireFiragaSlowA80% + + Link Prize Plus + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Crawling FireFiragaStopraD80% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Crawling FireFiragaStopgaB80% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + T + + + V + + + A + +
+
BlizzaraStrike RaidBlizzardG100% + + Lucky Strike + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
BlizzaraBlizzard EdgeBlizzardG100% + + Lucky Strike + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
BlizzaraBlizzardBlizzardE100% + + Lucky Strike + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
BlizzaraBlizzardAeroH100% + + Exp Walker + + + + Magic Haste + + + + HP Prize Plus + + + + Combo F Boost + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
BlizzagaBlizzard EdgeBlizzaraG100% + + Lucky Strike + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
BlizzagaBlizzardBlizzaraE100% + + Lucky Strike + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
BlizzagaBlizzaraBlizzaraF100% + + Lucky Strike + + + + Reload Boost + + + + HP Prize Plus + + + + Second Chance + + + + Blizzard Boost + + + + Damage Syphon + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Triple BlizzagaBlitzBlizzagaG100% + + Lucky Strike + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Triple BlizzagaBlizzaraBlizzagaE100% + + Lucky Strike + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Triple BlizzagaBlizzagaBlizzagaF100% + + Lucky Strike + + + + Reload Boost + + + + HP Prize Plus + + + + Second Chance + + + + Blizzard Boost + + + + Damage Syphon + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
ThundaraStun EdgeThunderK100% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
ThundaraThunderThunderI100% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
ThundaraZero GravityMagnetL100% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
ThundagaBinding StrikeThundaraK90% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
ThundagaThunderThundaraI90% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
ThundagaThundaraThundaraJ90% + + Exp Chance + + + + Reload Boost + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + Defender + + + + Once More + +
+
+ + + + + + + + + A + +
+
Thundaga ShotStrike RaidThundagaI85% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Thundaga ShotFreeze RaidThundagaE85% + + Lucky Strike + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Thundaga ShotFiragaThundagaA85% + + Link Prize Plus + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
CuraThunderCureI100% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
CuraCureCureM100% + + Lucky Strike + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Cure Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
CuraCureAeroO100% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
CuragaCureCuraM100% + + Lucky Strike + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Cure Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
CuragaCuraCuraN100% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Mine ShieldFiraZero GravityA100% + + Link Prize Plus + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + + +
+
Mine ShieldFiraBlockC100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Mine ShieldIgniteStopD100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + + +
+
Mine ShieldStopraBlockM100% + + Lucky Strike + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Cure Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Mine SquareFiraStopA100% + + Link Prize Plus + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Mine SquareFiraBarrierC100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Mine SquareAeroraIgniteD100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Mine SquareStopraBarrierM100% + + Lucky Strike + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Cure Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Seeker MineMine ShieldMine SquareB100% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + + + + + + + A + +
+
Seeker MineMine ShieldMagnegaC100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Seeker MineMine SquareMagnegaD100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Zero GraviraThunderZero GravityI90% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Zero GraviraZero GravityZero GravityM90% + + Lucky Strike + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Cure Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Zero GraviraMagnetAeroP90% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Zero GravigaThundaraZero GraviraI80% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Zero GravigaZero GravityZero GraviraM80% + + Lucky Strike + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Cure Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Zero GravigaZero GraviraZero GraviraN80% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
MagneraStun EdgeMagnetK100% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
MagneraThunderMagnetI100% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
MagneraMagnetMagnetM100% + + Lucky Strike + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Cure Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
MagnegaMagnetMagneraI100% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
MagnegaMagneraMagneraJ100% + + Exp Chance + + + + Reload Boost + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + Defender + + + + Once More + +
+
+ + + + + + + + + A + +
+
Munny MagnetWishing EdgeMagneraK100% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Munny MagnetThundaraMagneraI100% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Energy MagnetCureMagneraM100% + + Lucky Strike + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Cure Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Energy MagnetCuraMagneraN100% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
D-Link MagnetZero GraviraMagneraL100% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
D-Link MagnetMagneraStopraI100% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
AeroraQuick BlitzAeroG95% + + Lucky Strike + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
AeroraThunderAeroI95% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
AeroraAeroAeroE95% + + Lucky Strike + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
AerogaQuick BlitzAeroraO90% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
AerogaAeroAeroraM90% + + Lucky Strike + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Cure Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
AerogaAeroraAeroraN90% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
WarpThundaraZero GraviraI20% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + + + + + +
+
WarpZero GravityZero GraviraM20% + + Lucky Strike + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Cure Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
WarpZero GraviraZero GraviraN20% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
WarpThunderZero GravityI10% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + + + + + +
+
WarpMagnetAeroP10% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + + + + + +
+
WarpZero GravityZero GravityM10% + + Lucky Strike + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Cure Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + + + + V + + + + +
+
FaithWind RaidBreak TimeN100% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Deep FreezeFreeze RaidBlizzagaG100% + + Lucky Strike + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Deep FreezeBinding StrikeBlizzagaH100% + + Exp Walker + + + + Magic Haste + + + + HP Prize Plus + + + + Combo F Boost + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Deep FreezeBlizzagaTriple BlizzagaF100% + + Lucky Strike + + + + Reload Boost + + + + HP Prize Plus + + + + Second Chance + + + + Blizzard Boost + + + + Damage Syphon + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
GlacierBlizzagaDeep FreezeE100% + + Lucky Strike + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
GlacierTriple BlizzagaDeep FreezeF100% + + Lucky Strike + + + + Reload Boost + + + + HP Prize Plus + + + + Second Chance + + + + Blizzard Boost + + + + Damage Syphon + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Ice BarrageBlizzagaMine ShieldF100% + + Lucky Strike + + + + Reload Boost + + + + HP Prize Plus + + + + Second Chance + + + + Blizzard Boost + + + + Damage Syphon + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Ice BarrageBlizzagaMine SquareH100% + + Exp Walker + + + + Magic Haste + + + + HP Prize Plus + + + + Combo F Boost + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Firaga BurstFiraAerogaA20% + + Link Prize Plus + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Firaga BurstFiragaAeroraA20% + + Link Prize Plus + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Firaga BurstFiragaAerogaB20% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + + + + + + + A + +
+
Firaga BurstFiragaSlowA20% + + Link Prize Plus + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Firaga BurstFiragaStopraD20% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Firaga BurstFiragaStopgaB20% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + + + + + + + A + +
+
Raging StormFission FiragaFiraga BurstB100% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + + + + + + + A + +
+
Raging StormBlitzFiragaD10% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Raging StormFire DashFiraD10% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Raging StormFire SurgeCartwheelC10% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Raging StormFireFiraA10% + + Link Prize Plus + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Raging StormFiraFiraB10% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + + + + + + + A + +
+
Raging StormFiraFiragaA10% + + Link Prize Plus + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Raging StormFiragaFiragaB10% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + T + + + V + + + A + +
+
Mega FlareFission FiragaCrawling FireB100% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + T + + + + + + + +
+
QuakeBrutal BlastZero GravigaB90% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + T + + + + + + + +
+
QuakeBrutal BlastMagnegaC90% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
QuakeStun EdgeMine ShieldO30% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + + + + + +
+
QuakeBinding StrikeMine SquareL30% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
QuakeBrutal BlastBrutal BlastN30% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
MeteorGeo ImpactQuakeB100% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + T + + + + + + + +
+
MeteorBrutal BlastZero GravigaB10% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + T + + + + + + + +
+
MeteorBrutal BlastMagnegaC10% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + V + + + + +
+
TornadoMagnegaAerogaN100% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + + + + V + + + + +
+
TornadoQuick BlitzAeroraO10% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + + +
+
TornadoAeroAeroraM10% + + Lucky Strike + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Cure Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + + + + V + + + + +
+
TornadoAeroraAeroraN10% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + + + + V + + + + +
+
TornadoQuick BlitzAeroG5% + + Lucky Strike + + + + Attack Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + + +
+
TornadoThunderAeroI5% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + + +
+
TornadoAeroAeroE5% + + Lucky Strike + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Blizzard Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
TranscendenceMagnet SpiralZero GravigaJ100% + + Exp Chance + + + + Reload Boost + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + Defender + + + + Once More + +
+
+ + + T + + + + + + + +
+
MiniMagneraWarpN100% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
MiniMagnegaMagnegaJ100% + + Exp Chance + + + + Reload Boost + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + Defender + + + + Once More + +
+
+ + + T + + + V + + + A + +
+
MiniMagnegaBindI100% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
BlackoutZero GravityConfuseM100% + + Lucky Strike + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Cure Boost + + + + Item Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
BlackoutZero GraviraConfuseN100% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
BlackoutZero GraviraPoisonP100% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
IgniteFireBindA100% + + Link Prize Plus + + + + Magic Haste + + + + HP Prize Plus + + + + Leaf Bracer + + + + Fire Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
IgniteFiraBindC100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
StopraSlowSlowL100% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
StopraSlowStopK100% + + Link Prize Plus + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
StopraStopStopI100% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
StopgaStopStopraI100% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
StopgaStopraStopraJ100% + + Exp Chance + + + + Reload Boost + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + Defender + + + + Once More + +
+
+ + + + + + V + + + A + +
+
Homing SlideSliding DashMagneraP100% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + A + +
+
Homing SlideSliding DashAir SlideC100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + V + + + A + +
+
Homing SlideMagnetAir SlideL100% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + V + + + + +
+
Thunder RollThunder SurgeDodge RollP80% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + + +
+
Thunder RollThundagaDodge RollL80% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + V + + + + +
+
Thunder RollStun BlockDodge RollL80% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
FirewheelFiragaCartwheelB100% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + + + + + + + A + +
+
FirewheelFission FiragaCartwheelB100% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + + + + + + + A + +
+
FirewheelFire SurgeCartwheelC90% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Ice SlideBlizzard EdgeAir SlideF100% + + Lucky Strike + + + + Reload Boost + + + + HP Prize Plus + + + + Second Chance + + + + Blizzard Boost + + + + Damage Syphon + + + + Air Combo Plus + +
+
+ + + T + + + V + + + A + +
+
Ice SlideBlizzagaAir SlideH100% + + Exp Walker + + + + Magic Haste + + + + HP Prize Plus + + + + Combo F Boost + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + + +
+
Fire GlideFire SurgeGlideC100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + V + + + + +
+
Fire GlideFiragaGlideB100% + + Exp Chance + + + + Reload Boost + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Boost + + + + Damage Syphon + + + + Once More + +
+
+ + + T + + + V + + + + +
+
Renewal BlockCuragaBlockP100% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + + +
+
Renewal BlockEsunaBlockC100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + + +
+
Stun BlockStun EdgeBlockL100% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + V + + + + +
+
Stun BlockThundagaBlockI100% + + Link Prize Plus + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Thunder Boost + + + + HP Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + + +
+
Poison BlockPoison EdgeBlockH80% + + Exp Walker + + + + Magic Haste + + + + HP Prize Plus + + + + Combo F Boost + + + + Blizzard Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + T + + + V + + + + +
+
Poison BlockPoisonBlockP80% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Renewal BarrierCuragaBarrierP100% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Renewal BarrierEsunaBarrierN100% + + Lucky Strike + + + + Reload Boost + + + + Treasure Magnet + + + + Second Chance + + + + Cure Boost + + + + Defender + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Confuse BarrierConfusion StrikeBarrierC100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Confuse BarrierConfuseBarrierL100% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Stop BarrierStopgaBarrierC80% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
Payback FangSliding DashCounter HammerP100% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + V + + + + +
+
Payback RaidSliding DashStrike RaidP100% + + Exp Walker + + + + Magic Haste + + + + Treasure Magnet + + + + Combo F Boost + + + + Dark Screen + + + + Item Boost + + + + Air Combo Plus + +
+
+ + + + + + + + + A + +
+
Payback SurgeSliding DashFire SurgeC100% + + Link Prize Plus + + + + Attack Haste + + + + HP Prize Plus + + + + Finish Boost + + + + Fire Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + + + + + + + A + +
+
Payback SurgeSliding DashThunder SurgeL100% + + Lucky Strike + + + + Attack Haste + + + + Treasure Magnet + + + + Finish Boost + + + + Thunder Screen + + + + HP Boost + + + + Combo Plus + +
+
+ + + T + + + + + + + +
+
Lightning RayBlitzDark Haze-10% + + - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + - + +
+
+ + + T + + + V + + + A + +
+
Lightning RayBlitzAir Slide-10% + + - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + - + +
+
+ + + T + + + V + + + A + +
+
Lightning RayFire DashThunder Surge-10% + + - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + - + +
+
+ + + T + + + V + + + A + +
+
Lightning RayBinding StrikeThundara-10% + + - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + - + +
+
+ + + T + + + V + + + A + +
+
Lightning RayThunderThundara-10% + + - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + - + +
+
+ + + T + + + V + + + A + +
+
Lightning RayThundaraThundara-10% + + - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + - + +
+
+ + + + + + + + + A + +
+
Lightning RayAerogaBarrier Surge-10% + + - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + - + +
+
+ + + + + + + + + A + +
+
Meteor ShowerStrike RaidThundaga-15% + + - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + - + +
+
+ + + + + + + + + A + +
+
Meteor ShowerFreeze RaidThundaga-15% + + - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + - + +
+
+ + + + + + + + + A + +
+
Meteor ShowerFiragaThundaga-15% + + - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + - + +
+
+ + + + + + + + + A + +
+
Meteor ShowerBlitzZero Graviga-10% + + - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + - + +
+
+ + + T + + + V + + + + +
+
Bio BarragePoison EdgeBlock-20% + + - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + - + +
+
+ + + T + + + V + + + + +
+
Bio BarragePoisonBLock-20% + + - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + - + +
+
+ + + T + + + V + + + A + +
+
Bio BarrageQuick BlitzPoison-5% + + - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + - + +
+
+ + + T + + + V + + + A + +
+
Bio BarrageSliding DashPoison-5% + + - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + - + +
+
+ + + T + + + V + + + A + +
+
Bio BarrageStrike RaidPoison-5% + + - + + + + - + + + + - + + + + - + + + + - + + + + - + + + + - + +
+
+ + \ No newline at end of file diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 0000000..5d56faf --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,2 @@ +[toolchain] +channel = "nightly" diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 0000000..9a311d1 --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1,8 @@ +unstable_features = true +reorder_imports = true +hard_tabs = true +control_brace_style = "ClosingNextLine" +imports_granularity = "Crate" +group_imports = "StdExternalCrate" +edition = "2021" +newline_style = "Unix" diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..37eae30 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,158 @@ +#![allow(dead_code)] + +use std::collections::HashMap; + +use askama::Template; +use itertools::Itertools; +use serde::Deserialize; + +#[derive(Debug, Deserialize, PartialEq, Eq)] +enum Character { + #[serde(alias = "A")] + Aqua, + #[serde(alias = "V")] + Ventus, + #[serde(alias = "T")] + Terra, +} + +#[derive(Debug, Deserialize, Clone, PartialEq, Eq, PartialOrd, Ord)] +struct Ability { + name: String, + from: String, + category: String, + max: u8, + types: Vec, +} + +#[derive(Debug, Deserialize)] +struct Command { + name: String, + category: String, + char: Vec, + #[serde(default)] + starting: Option, + #[serde(default)] + info: Option, + #[serde(default)] + recipes: Vec, +} + +impl Command {} + +#[derive(Debug, Deserialize)] +struct CommandRecipe { + char: Vec, + r#type: char, + ingredients: (String, String), + chance: u8, + #[serde(skip_deserializing)] + abilities: Vec<(String, Ability)>, +} + +impl CommandRecipe { + pub fn get_ability(&self, crystal: &str) -> Option { + if self.r#type == '-' { + return None; + } + + for ability in self.abilities.iter() { + if ability.0 == crystal { + return Some(ability.1.clone()); + } + } + + // This should never happen unless the json files are wrong + panic!( + "No ability found for {} + {} and {}", + self.ingredients.0, self.ingredients.1, crystal + ); + } + + pub fn can_unlock(&self, char: Character) -> bool { + self.char.contains(&char) + } + + pub fn get_unlock_chars(&self) -> String { + let mut id = String::new(); + if self.can_unlock(Character::Terra) { + id += "T" + } + + if self.can_unlock(Character::Ventus) { + if !id.is_empty() { + id += " "; + } + id += "V"; + } + + if self.can_unlock(Character::Aqua) { + if !id.is_empty() { + id += " "; + } + id += "A"; + } + + id + } + + pub fn set_abilities(&mut self, abilities: &[Ability]) { + let mut vec: Vec<(String, Ability)> = vec![]; + + for ability in abilities.iter() { + if ability.types.contains(&self.r#type) { + vec.push((ability.from.clone(), ability.clone())); + } + } + vec.sort(); + self.abilities = vec; + } +} + +#[derive(Debug, Deserialize)] +struct Finisher { + name: String, + char: Vec, + level: u8, + #[serde(default)] + follows: Vec, + goal: String, + color: String, +} + +#[derive(Template)] +#[template(path = "pages/commands.html")] +struct CommandsTemplate { + pub commands: Vec, + pub crystals: Vec, +} + +fn main() { + let abilities_str = std::fs::read_to_string("./abilities.json").unwrap(); + let abilities = serde_json::from_str::>(&abilities_str).unwrap(); + + let finishers_str = std::fs::read_to_string("./finish-commands.json").unwrap(); + let finishers = serde_json::from_str::>(&finishers_str).unwrap(); + + let commands_str = std::fs::read_to_string("./commands.json").unwrap(); + let mut commands = serde_json::from_str::>(&commands_str).unwrap(); + + // Create a vec with all the crystal variants found in abilities + let crystals = abilities + .iter() + .map(|x| x.from.clone()) + .unique() + .sorted() + .collect(); + + // Create a vec of crystals and what ability they give for each recipe + for cmd in commands.iter_mut() { + for recipe in cmd.recipes.iter_mut() { + recipe.set_abilities(&abilities); + } + } + + let template = CommandsTemplate { commands, crystals }; + + std::fs::write("./index.html", template.render().unwrap()).unwrap(); +} diff --git a/templates/components/char-filters.html b/templates/components/char-filters.html new file mode 100644 index 0000000..b0b6d54 --- /dev/null +++ b/templates/components/char-filters.html @@ -0,0 +1,36 @@ + + + + + + + + + + + diff --git a/templates/components/search.html b/templates/components/search.html new file mode 100644 index 0000000..db576e3 --- /dev/null +++ b/templates/components/search.html @@ -0,0 +1,29 @@ + +
+ + + + + + + + diff --git a/templates/components/type-filters.html b/templates/components/type-filters.html new file mode 100644 index 0000000..c0dfca5 --- /dev/null +++ b/templates/components/type-filters.html @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + diff --git a/templates/layouts/base.html b/templates/layouts/base.html new file mode 100644 index 0000000..0adac52 --- /dev/null +++ b/templates/layouts/base.html @@ -0,0 +1,57 @@ + + + + {% block title %}{% endblock %} + + + {% block head %}{% endblock %} + + + +
{% block content %}{% endblock %}
+ + diff --git a/templates/pages/commands.html b/templates/pages/commands.html new file mode 100644 index 0000000..db1159f --- /dev/null +++ b/templates/pages/commands.html @@ -0,0 +1,189 @@ +{% extends "layouts/base.html" %} + +{% block title %}Commands{% endblock %} + +{% block head %} + +{% endblock %} + +{% block content %} + {% include "components/search.html" %} +
+ {% include "components/type-filters.html" %} +
+ {% include "components/char-filters.html" %} + + + + + + + + + + + + + + {% for crystal in crystals %} + + {% endfor %} + + + + {% for cmd in commands %} + {% for recipe in cmd.recipes %} + + + + + + + + {% for crystal in crystals %} + {% let ability = recipe.get_ability(crystal) %} + + {% endfor %} + + {% endfor %} + {% endfor %} + +
CharacterCommandIngredient AIngredient BTypeChanceAbilities
{{ crystal }}
+
+ + + {% if recipe.can_unlock(Character::Terra) %}T{% endif %} + + + {% if recipe.can_unlock(Character::Ventus) %}V{% endif %} + + + {% if recipe.can_unlock(Character::Aqua) %}A{% endif %} + +
+
{{ cmd.name }}{{ recipe.ingredients.0 }}{{ recipe.ingredients.1 }}{{ recipe.type }}{{ recipe.chance }}% + {% if ability.is_some() %} + {{ ability.unwrap().name }} + {% else %} + - + {% endif %} +
+{% endblock %}