diff --git a/combat/accessories.html b/combat/accessories.html new file mode 100644 index 0000000..c58e107 --- /dev/null +++ b/combat/accessories.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
+ + + + + + + + + +
JAPANESEENGLISHEFFECTS
+ + diff --git a/combat/braveOrders.html b/combat/braveOrders.html new file mode 100644 index 0000000..0a453d4 --- /dev/null +++ b/combat/braveOrders.html @@ -0,0 +1,41 @@ + + + + + + + + + + +
+ + + + + + + + + + + +
ORDERBP COSTTURNSPRIMARY EFFECTSECONDARY EFFECT
+ + diff --git a/combat/combat.css b/combat/combat.css new file mode 100644 index 0000000..358ea1b --- /dev/null +++ b/combat/combat.css @@ -0,0 +1,42 @@ +body { + margin: 0; + background-color: rgb(17, 17, 17); + color: white; + display: flex; + -webkit-app-region: drag; +} + +#filters { + margin-top: 1.5rem; + width: 12%; + height: 90vh; + overflow-y: scroll; + overscroll-behavior: contain; +} + +table { + display: block; + width: 88%; + height: 100vh; + overflow-y: scroll; +} + +thead th { + position: sticky; + top: 0; + background-color: black; +} + +table, +td, +th { + border: 1px solid #333; +} + +tbody th { + text-align: left; +} + +.japanese { + font-family: "Sawarabi Gothic"; +} diff --git a/combat/combat.js b/combat/combat.js new file mode 100644 index 0000000..c03b841 --- /dev/null +++ b/combat/combat.js @@ -0,0 +1,71 @@ +var tbody; +var filters; +var renderTable; +var activeFilters = []; + +const colors = { + EARTH: "#EFCAA2", + WATER: "#A4C2F4", + FIRE: "#F4CCCC", + WIND: "#D9EAD3", + TIME: "#434343", + SPACE: "#FFF2CC", + MIRAGE: "#D9D9D9", + LOST: "#D5A6BD", +}; + +function renderOverlay({ resourceName, rowTemplate }) { + tbody = document.querySelector("tbody"); + filters = document.getElementById("filters"); + const resource = window.api.getResource(resourceName); + renderFilters(resource); + renderTable = function () { + tbody.innerHTML = ""; + for (const category in resource) { + if (activeFilters.length > 0 && !activeFilters.includes(category)) { + continue; + } + renderHeader(category); + for (const row of resource[category]) { + const tr = document.createElement("tr"); + tr.innerHTML = rowTemplate(row); + tbody.appendChild(tr); + } + } + }; + renderTable(); +} + +function renderFilters(resource) { + for (const category in resource) { + const div = document.createElement("div"); + const input = document.createElement("input"); + input.type = "radio"; + input.name = category; + div.appendChild(input); + const label = document.createElement("label"); + label.textContent = category; + div.appendChild(label); + filters.appendChild(div); + div.addEventListener("click", () => { + if (input.checked) { + activeFilters = activeFilters.filter((filter) => filter !== category); + input.checked = false; + } else { + activeFilters = [...activeFilters, category]; + input.checked = true; + } + renderTable(); + }); + } +} + +function renderHeader(category) { + const tr = document.createElement("tr"); + const th = document.createElement("th"); + tr.style.backgroundColor = colors[category] ?? "black"; + th.colSpan = document.querySelector("thead tr").childElementCount; + th.textContent = category; + tr.appendChild(th); + tbody.appendChild(tr); +} diff --git a/combat/crafts.html b/combat/crafts.html index 5f3a41b..908070b 100644 --- a/combat/crafts.html +++ b/combat/crafts.html @@ -2,77 +2,21 @@ - + + diff --git a/combat/doors.html b/combat/doors.html new file mode 100644 index 0000000..9d30aa3 --- /dev/null +++ b/combat/doors.html @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + +
DOORCHARACTERSLEVEL
+ + diff --git a/combat/items.html b/combat/items.html new file mode 100644 index 0000000..5abd659 --- /dev/null +++ b/combat/items.html @@ -0,0 +1,37 @@ + + + + + + + + + + +
+ + + + + + + + + +
JAPANESEENGLISHEFFECTS
+ + diff --git a/combat/masterQuartz.html b/combat/masterQuartz.html new file mode 100644 index 0000000..e596967 --- /dev/null +++ b/combat/masterQuartz.html @@ -0,0 +1,39 @@ + + + + + + + + + + +
+ + + + + + + + + + +
JAPANESEENGLISHEFFECTSADDED ARTS
+ + diff --git a/combat/quartz.html b/combat/quartz.html new file mode 100644 index 0000000..0c78b8b --- /dev/null +++ b/combat/quartz.html @@ -0,0 +1,41 @@ + + + + + + + + + + +
+ + + + + + + + + + + +
JAPANESEENGLISHSTATSEFFECTSADDED ARTS
+ + diff --git a/index.css b/index.css index 76b10a4..e0691b3 100644 --- a/index.css +++ b/index.css @@ -25,6 +25,10 @@ body { justify-content: flex-end; } +#combat-overlay { + margin-right: 0.5rem; +} + #episode { display: none; } @@ -69,6 +73,7 @@ body { flex-direction: column; padding: 2rem 5rem; color: white; + -webkit-app-region: drag; } .textStroke { diff --git a/index.html b/index.html index 3b805d9..914fb6e 100644 --- a/index.html +++ b/index.html @@ -41,7 +41,16 @@ - + diff --git a/parseCombat.js b/parseCombat.js index 90e5d8d..25502ec 100644 --- a/parseCombat.js +++ b/parseCombat.js @@ -15,28 +15,161 @@ function downloadAndParseCombat() { "https://docs.google.com/spreadsheets/d/1gyoxZ5oLcQW4tt5dzFmJ1sqGwP_NxUuM947C5cVAJzE/export?format=xlsx", function xlsxToJson(buffer) { const file = xlsx.read(buffer, { type: "buffer" }); - const crafts = xlsx.utils - .sheet_to_json(file.Sheets.Crafts, { - header: ["name", "cpCost", "pbu", "aoe", "effects"], - }) - .reduce((acc, line) => { - if (Object.keys(line).length === 1) { - return { ...acc, [line.name]: [] }; - } - const currentCharacter = Object.keys(acc)[ - Object.keys(acc).length - 1 - ]; - return { - ...acc, - [currentCharacter]: [...acc[currentCharacter], line], - }; - }, {}); - fs.writeFileSync( - "resources/crafts.json", - JSON.stringify(crafts, null, 2) - ); + saveCrafts(file); + saveQuartz(file); + saveMasterQuartz(file); + saveItems(file); + saveBraveOrders(file); + saveAccessories(file); + saveDoors(file); } ); } +function saveCrafts(file) { + const crafts = xlsx.utils + .sheet_to_json(file.Sheets.Crafts, { + header: ["name", "cpCost", "pbu", "aoe", "effects"], + }) + .reduce((acc, line) => { + if (Object.keys(line).length === 1) { + if (line.name.includes("REVERIE")) { + return acc; + } + return { ...acc, [line.name]: [] }; + } + if (line.name === "Craft Name") { + return acc; + } + + const currentCharacter = Object.keys(acc)[Object.keys(acc).length - 1]; + const type = line.name.match(/C|S/g)[0]; + const name = line.name.replace(/\[(C|S)\]/g, ""); + return { + ...acc, + [currentCharacter]: [...acc[currentCharacter], { type, ...line, name }], + }; + }, {}); + fs.writeFileSync("resources/crafts.json", JSON.stringify(crafts, null, 2)); +} + +function saveQuartz(file) { + const quartz = xlsx.utils + .sheet_to_json(file.Sheets.Quartz, { + header: ["japanese", "english", "stats", "notes", "arts"], + }) + .slice(1) + .reduce((acc, line) => { + if (Object.keys(line).length === 1) { + if (line.japanese.includes("quartz")) { + return acc; + } + return { ...acc, [line.japanese]: [] }; + } + const currentElement = Object.keys(acc)[Object.keys(acc).length - 1]; + return { + ...acc, + [currentElement]: [...acc[currentElement], line], + }; + }, {}); + fs.writeFileSync("resources/quartz.json", JSON.stringify(quartz, null, 2)); +} + +function saveMasterQuartz(file) { + const masterQuartz = xlsx.utils + .sheet_to_json(file.Sheets["Master Quartz"], { + header: ["japanese", "english", "effects", "arts"], + }) + .slice(1) + .reduce((acc, line) => { + if (Object.keys(line).length === 1) { + return { ...acc, [line.japanese]: [] }; + } + const currentElement = Object.keys(acc)[Object.keys(acc).length - 1]; + return { + ...acc, + [currentElement]: [...acc[currentElement], line], + }; + }, {}); + fs.writeFileSync( + "resources/masterQuartz.json", + JSON.stringify(masterQuartz, null, 2) + ); +} + +function saveItems(file) { + const items = xlsx.utils + .sheet_to_json(file.Sheets.Items, { + header: ["japanese", "english", "effects"], + }) + .slice(1) + .reduce((acc, line) => { + if (Object.keys(line).length === 1) { + return { ...acc, [line.japanese]: [] }; + } + const currentCategory = Object.keys(acc)[Object.keys(acc).length - 1]; + return { + ...acc, + [currentCategory]: [...acc[currentCategory], line], + }; + }, {}); + fs.writeFileSync("resources/items.json", JSON.stringify(items, null, 2)); +} + +function saveBraveOrders(file) { + const braveOrders = xlsx.utils + .sheet_to_json(file.Sheets["Brave Orders"], { + header: ["name", "bpCost", "turns", "primaryEffect", "secondaryEffect"], + }) + .slice(1) + .reduce((acc, line) => { + if (Object.keys(line).length === 1) { + if (line.name.includes("REVERIE")) { + return acc; + } + return { ...acc, [line.name]: [] }; + } + const currentCharacter = Object.keys(acc)[Object.keys(acc).length - 1]; + return { + ...acc, + [currentCharacter]: [...acc[currentCharacter], line], + }; + }, {}); + fs.writeFileSync( + "resources/braveOrders.json", + JSON.stringify(braveOrders, null, 2) + ); +} + +function saveAccessories(file) { + const accessories = xlsx.utils + .sheet_to_json(file.Sheets.Accessories, { + header: ["japanese", "english", "effects"], + }) + .slice(1) + .reduce((acc, line) => { + if (Object.keys(line).length === 1) { + return { ...acc, [line.japanese]: [] }; + } + const currentCategory = Object.keys(acc)[Object.keys(acc).length - 1]; + return { + ...acc, + [currentCategory]: [...acc[currentCategory], line], + }; + }, {}); + fs.writeFileSync( + "resources/accessories.json", + JSON.stringify(accessories, null, 2) + ); +} + +function saveDoors(file) { + const doors = xlsx.utils + .sheet_to_json(file.Sheets["Door of Trials"], { + header: ["door", "characters", "lvl"], + }) + .slice(2); + fs.writeFileSync("resources/doors.json", JSON.stringify(doors, null, 2)); +} + downloadAndParseCombat(); diff --git a/preload.js b/preload.js index 7bede31..a497735 100644 --- a/preload.js +++ b/preload.js @@ -21,6 +21,7 @@ contextBridge.exposeInMainWorld("api", { width: 910, height: 300, titleBarStyle: "hidden", + transparent: true, webPreferences: { nodeIntegration: false, contextIsolation: true, @@ -31,5 +32,5 @@ contextBridge.exposeInMainWorld("api", { win.loadFile(`combat/${section}.html`); }, - getCrafts: () => require("./resources/crafts.json"), + getResource: (name) => require(`./resources/${name}.json`), }); diff --git a/resources/accessories.json b/resources/accessories.json new file mode 100644 index 0000000..a46a475 --- /dev/null +++ b/resources/accessories.json @@ -0,0 +1,841 @@ +{ + "USABLE BY ALL": [ + { + "japanese": "シルバーピアス", + "english": "Silver Earrings ", + "effects": "Prevents poison." + }, + { + "japanese": "シルバーチェイン", + "english": "Silver Chain", + "effects": "HP+3000, DEF/ADF+45, prevents poison." + }, + { + "japanese": "シルバーチャーム", + "english": "Silver Charm", + "effects": "HP+6000, DEF/ADF+90, prevents poison." + }, + { + "japanese": "シルバーアミュレット", + "english": "Silver amulet", + "effects": "HP+12000, DEF/ADF+180, prevents poison." + }, + { + "japanese": "コーラルリング", + "english": "Coral Ring", + "effects": "Prevents seal." + }, + { + "japanese": "コーラルブレス", + "english": "Coral Bracelet", + "effects": "STR+45, 4% Critical, prevents seal." + }, + { + "japanese": "コーラルチャーム", + "english": "Coral Charm", + "effects": "STR+90, 6% Critical, prevents seal." + }, + { + "japanese": "コーラルアミュレット", + "english": "Coral amulet", + "effects": "STR+180, 8%Critical, prevents seal." + }, + { + "japanese": "マーブルリング", + "english": "Marble Ring", + "effects": "Prevents mute." + }, + { + "japanese": "マーブルブレス", + "english": "Marble Bracelet", + "effects": "EP+150, ATS+45, prevents mute." + }, + { + "japanese": "マーブルチャーム", + "english": "Marble Charm", + "effects": "EP+300, ATS+90, prevents mute." + }, + { + "japanese": "マーブルアミュレット", + "english": "Marble amulet", + "effects": "EP+600, ATS+180, prevents mute." + }, + { + "japanese": "ホワイトレンズ", + "english": "White Lens", + "effects": "Prevents blind." + }, + { + "japanese": "シャイングラス", + "english": "Shining Glass", + "effects": "STR/ATS+25, 50% Hit, prevents blind." + }, + { + "japanese": "パンツァーゴーグル", + "english": "Panzer Goggles", + "effects": "STR/ATS+50, 100% Hit, prevents blind." + }, + { + "japanese": "パンツァーゴーグルΩ", + "english": "Panzer Goggles Ω", + "effects": "STR/ATS+100, 100% Hit, 2% Critical, prevents blind." + }, + { + "japanese": "ブラックバングル", + "english": "Black Bangle", + "effects": "Prevents sleep." + }, + { + "japanese": "すっきりバンダナ", + "english": "Clear Bandana", + "effects": "Evasion+6%, 4% Critical, prevents sleep." + }, + { + "japanese": "覚醒ハチマキ", + "english": "Awakener Headband", + "effects": "Evasion+9%, 6% Critical, prevents sleep." + }, + { + "japanese": "真・覚醒ハチマキ", + "english": "True Awakener Headband", + "effects": "Evasion+12%, 8% Critical, prevents sleep." + }, + { + "japanese": "クールネックレス", + "english": "Cool Necklace", + "effects": "Prevents burn." + }, + { + "japanese": "ひんやりベルト", + "english": "Cool Belt", + "effects": "ATS/ADF+60, prevents burn." + }, + { + "japanese": "冷厳バックル", + "english": "Cold Buckle", + "effects": "ATS/ADF+120, prevents burn." + }, + { + "japanese": "真・冷厳バックル", + "english": "True Cold Buckle", + "effects": "ATS/ADF+240, prevents burn." + }, + { + "japanese": "フレイムジッポー", + "english": "Flame Zippo", + "effects": "Prevents freeze." + }, + { + "japanese": "ぽかぽかソックス", + "english": "Warm Socks", + "effects": "STR/DEF+60, prevents freeze." + }, + { + "japanese": "情熱レギンス", + "english": "Passion Leggings", + "effects": "STR/DEF+120, prevents freeze." + }, + { + "japanese": "真・情熱レギンス", + "english": "True Passion Leggings", + "effects": "STR/DEF+240, prevents freeze." + }, + { + "japanese": "ストーンブローチ", + "english": "Stone Brooch", + "effects": "Prevents petrify." + }, + { + "japanese": "ふわふわストール", + "english": "Soft Stole", + "effects": "DEF/ADF+60, SPD+3, prevents petrify." + }, + { + "japanese": "悠然ショール", + "english": "Composure Shawl", + "effects": "DEF/ADF+120, SPD+5, prevents petrify." + }, + { + "japanese": "真・悠然ショール", + "english": "True Composure Shawl", + "effects": "DEF/ADF+240, SPD+7, prevents petrify." + }, + { + "japanese": "シトラスボトル", + "english": "Citrus Bottle", + "effects": "Prevents faint." + }, + { + "japanese": "オレンジケープ", + "english": "Orange Cape", + "effects": "STR+60, 4% Evasion, prevents faint." + }, + { + "japanese": "燈花のコサージュ", + "english": "Orange Corsage", + "effects": "STR+120, 6% Evasion, prevents faint." + }, + { + "japanese": "ヘリオスブーケ", + "english": "Helios Bouquet", + "effects": "STR+240, 8% Evasion, prevents faint." + }, + { + "japanese": "フローラルボトル", + "english": "Floral Bottle", + "effects": "Prevents confusion." + }, + { + "japanese": "プリズムケープ", + "english": "Prismatic Cape", + "effects": "ATS+60, SPD+2, prevents confusion." + }, + { + "japanese": "桜花のコサージュ", + "english": "Cherry Blossom Corsage", + "effects": "ATS+120, SPD+4, prevents confusion." + }, + { + "japanese": "セレネスブーケ", + "english": "Serene Bouquet", + "effects": "ATS+240, SPD+6, prevents confusion." + }, + { + "japanese": "ホーリーチェイン", + "english": "Holy Chain", + "effects": "Prevents deathblow." + }, + { + "japanese": "ホーリースフィア", + "english": "Holy Sphere", + "effects": "HP+1500, EP+75, 5% Evasion, prevents deathblow." + }, + { + "japanese": "ホーリーシンボル", + "english": "Holy Symbol", + "effects": "HP+3000, EP+150, 7% Evasion, prevents deathblow." + }, + { + "japanese": "ホーリークラウン", + "english": "Holy Crown", + "effects": "HP+6000, EP+300, 9% Evasion, prevents deathblow." + }, + { + "japanese": "フォースシール", + "english": "Force Seal", + "effects": "Prevents Stat Down." + }, + { + "japanese": "フォースメダル", + "english": "Force Medal", + "effects": "DEF/ADF+75, 50% Hit, 3% Critical,Prevents Stat Down." + }, + { + "japanese": "フォースシンボル", + "english": "Force Symbol", + "effects": "DEF/ADF+150, 100% Hit, 5% Critical, Prevents Stat Down." + }, + { + "japanese": "フォースクラウン", + "english": "Force Crown", + "effects": "DEF/ADF+300, 100% Hit, 7% Critical, Prevents Stat Down." + }, + { + "japanese": "レザーウォッチ", + "english": "Leather Watch", + "effects": "Prevents Delay" + }, + { + "japanese": "ブロンズウォッチ", + "english": "Bronze Watch", + "effects": "STR/ATS+45, SPD+5, Prevents Delay" + }, + { + "japanese": "シルヴァリーウォッチ", + "english": "Silver Watch", + "effects": "STR/ATS+90, SPD+7, Prevents Delay" + }, + { + "japanese": "ゴルディオンウォッチ", + "english": "Gordion Watch", + "effects": "STR/ATS+180, SPD+9, Prevents Delay" + }, + { + "japanese": "身代わりマペット", + "english": "Proxy Puppet", + "effects": "Revive once from K.O. with 50% HP. Accessory breaks." + }, + { + "japanese": "身代わりマペット+", + "english": "Proxy Puppet+", + "effects": "10% Evasion, Revive once from K.O with 100% HP/EP. \nAccessory Breaks\n" + }, + { + "japanese": "土壇場マペット", + "english": "Emergency Puppet", + "effects": "20% Evasion, Revive once from K.O. with 100% HP/EP and 100 CP. Accessory breaks." + }, + { + "japanese": "超・土壇場マペット", + "english": "Super Emergency Puppet", + "effects": "30% Evasion, Revive once from K.O. with 100% HP/EP and 200 CP.\nAccessory breaks." + }, + { + "japanese": "イエローペンデュラム", + "english": "Yellow Pendulum", + "effects": "Prevents Seal/Mute/Stat Down." + }, + { + "japanese": "イエロークレスト", + "english": "Yellow Crest", + "effects": "DEF/ADF+200, Prevents Seal/Mute/Stat Down." + }, + { + "japanese": "ディープオーカー", + "english": "Deep Ocher", + "effects": "DEF/ADF+400, Prevents Seal/Mute/Stat Down\nRevive once from K.O. with 100% HP." + }, + { + "japanese": "ディープオーカー零", + "english": "Deep Ocher Zero", + "effects": "DEF/ADF+800, Prevents Seal/Mute/Stat Down\nRevive once from K.O. with 100% HP/EP and 100 CP." + }, + { + "japanese": "ブルーペンデュラム", + "english": "Blue Pendulum", + "effects": "Prevents Poison/Blind/Burn" + }, + { + "japanese": "ブルークレスト", + "english": "Blue Crest", + "effects": "ATS+125, Prevents Poison/Blind/Burn" + }, + { + "japanese": "サイレンスブルー", + "english": "Still Blue", + "effects": "ATS+250, Prevents Poison/Blind/Burn" + }, + { + "japanese": "サイレンスブルー零", + "english": "Still Blue Zero", + "effects": "ATS+500, Prevents Poison/Blind/Burn\nReduces EP Consumption by 25%" + }, + { + "japanese": "レッドペンデュラム", + "english": "Red Pendulum", + "effects": "Prevents Freeze/Petrify/Faint" + }, + { + "japanese": "レッドクレスト", + "english": "Red Crest", + "effects": "STR+125, Prevents Freeze/Petrify/Faint" + }, + { + "japanese": "パシオンルージュ", + "english": "Passion Rouge", + "effects": "STR+250, Prevents Freeze/Petrify/Faint\nBreak Damage +50%" + }, + { + "japanese": "パシオンルージュ零", + "english": "Passion Rouge Zero", + "effects": "STR+500, Prevents Freeze/Petrify/Faint\nBreak Damage +100%" + }, + { + "japanese": "グリーンペンデュラム", + "english": "Green Pendulum", + "effects": "Prevents Sleep/Nightmare/Confuse" + }, + { + "japanese": "グリーンクレスト", + "english": "Green Crest", + "effects": "50% Hit, 5% Evasion, Prevents Sleep/Nightmare/Confuse" + }, + { + "japanese": "エヴァーグリーン", + "english": "Evergreen", + "effects": "100% Hit, 10% Evasion, Prevents Sleep/Nightmare/Confuse" + }, + { + "japanese": "エヴァーグリーン零", + "english": "Evergreen Zero", + "effects": "100% Hit, 15% Evasion, Prevents Sleep/Nightmare/Confuse\n50% chance to Evade Magic Attacks" + }, + { + "japanese": "ダークペンデュラム", + "english": "Dark Pendulum", + "effects": "Prevents Deathblow/Delay/Vanish." + }, + { + "japanese": "ダーククレスト", + "english": "Dark Crest", + "effects": "SPD+8. Prevents Deathblow/Delay/Vanish" + }, + { + "japanese": "アビスシャドウ", + "english": "Abyss Shadow", + "effects": "SPD+16, Prevents Deathblow/Delay/Vanish" + }, + { + "japanese": "アビスシャドウ零", + "english": "Abyss Shadow Zero", + "effects": "SPD +24, Prevents Deathblow/Delay/Vanish\nAttacks/Crafts inflict Delay +4" + }, + { + "japanese": "グラールロケット", + "english": "Grail Locket", + "effects": "Prevents All Abnormal Status" + }, + { + "japanese": "グラールロケット・ウル", + "english": "Grail Locket Ur", + "effects": "HP+3000, STR+300, 5% Evasion, Prevents All Abnormal Status\nStart battle with 1 Turn of Balance down 50%\n15% Critical " + }, + { + "japanese": "グラールロケット・ロア", + "english": "Grail Locket Loa", + "effects": "EP+150, ATS+300, 5% Evasion, Prevents all Abnormal Status\nArts Cast time reduced by 33%\n20% Arts Critical" + }, + { + "japanese": "必勝ハチマキ", + "english": "Gladiator Headband", + "effects": "STR/DEF/ADF+75, CP Recovery+30%." + }, + { + "japanese": "真・必勝ハチマキ", + "english": "True Gladiator Headband", + "effects": "STR/DEF/ADF+150, CP Recovery+60%" + }, + { + "japanese": "極・必勝ハチマキ", + "english": "Extreme Gladiator Headband", + "effects": "STR/DEF/ADF+300, CP Recovery+90%" + }, + { + "japanese": "闘魂ベルト", + "english": "Gladiator Belt", + "effects": "STR/ATS+75, CP+2 per turn" + }, + { + "japanese": "真・闘魂ベルト", + "english": "True Gladiator Belt", + "effects": "STR/ATS+150, CP+3 per turn" + }, + { + "japanese": "極・闘魂ベルト", + "english": "Extreme Gladiator Belt", + "effects": "STR/ATS+300, CP+6 per turn" + }, + { + "japanese": "カゲマル根付", + "english": "Kagemaru Strap", + "effects": "SPD+2" + }, + { + "japanese": "カゲマル財布", + "english": "Kagemaru Wallet", + "effects": "SPD+4" + }, + { + "japanese": "カゲマルバッジ", + "english": "Kagemaru Badge", + "effects": "SPD+6" + }, + { + "japanese": "カゲマルの帯", + "english": "Kagemaru Belt", + "effects": "2% Evasion" + }, + { + "japanese": "カゲマルの栞", + "english": "Kagemaru Bookmark", + "effects": "4% Evasion" + }, + { + "japanese": "カゲマル手拭い", + "english": "Kagemaru Washcloth", + "effects": "6% Evasion" + }, + { + "japanese": "みっしぃコイン", + "english": "Mishy Coin", + "effects": "STR+20, 100% Hit, Attacks/Crafts inflict Delay+2" + }, + { + "japanese": "みっしぃバッジ", + "english": "Mishy Badge", + "effects": "STR+30, 100% Hit, Attacks/Crafts inflict Delay+3" + }, + { + "japanese": "みっしぃテイル", + "english": "Mishy Tail", + "effects": "STR+100, 100% Hit, Attacks/Crafts inflict Delay+3" + }, + { + "japanese": "みっしぃオルゴール", + "english": "Mishy Music Box", + "effects": "STR+40, 100% Hit, Attacks/Crafts inflict Delay+4" + }, + { + "japanese": "ナイトみっしぃ", + "english": "Night Mishy", + "effects": "STR+300, 100% Hit, Attacks/Crafts inflict Delay+5" + }, + { + "japanese": "みーしぇリボン", + "english": "Mishette Ribbon", + "effects": "EP+25, ATS+10, Break Damage +10%" + }, + { + "japanese": "みーしぇティアラ", + "english": "Mishette Tiara", + "effects": "EP+50, ATS+20, Break Damage +20%" + }, + { + "japanese": "みーしぇバッジ", + "english": "Mishette Badge", + "effects": "EP+75, ATS+30, Break Damage +30%" + }, + { + "japanese": "みーしぇチャーム", + "english": "Mishette Charm", + "effects": "EP+100, ATS+40, Break Damage +40%" + }, + { + "japanese": "クイーンみーしぇ", + "english": "Queen Mishette", + "effects": "EP+1000, ATS+300, Break Damage +100%" + }, + { + "japanese": "メカみっしぃウォッチ", + "english": "Mecha Mishy Watch", + "effects": "DEF/ADF +20. 20% Increased Equipment Drop rate" + }, + { + "japanese": "メカみっしぃゴーグル", + "english": "Mecha Mishy Goggles", + "effects": "DEF/ADF +40. 30% Increased Equipment Drop rate" + }, + { + "japanese": "メカみっしぃライト", + "english": "Mecha Mishy Light", + "effects": "DEF/ADF +60. 40% Increased Equipment Drop rate" + }, + { + "japanese": "メカみっしぃバッジ", + "english": "Mecha Mishy Badge", + "effects": "DEF/ADF +80. 50% Increased Equipment Drop rate" + }, + { + "japanese": "キングメカみっしぃ", + "english": "King Mecha Mishy", + "effects": "DEF/ADF +400. 100% Increased Equipment Drop rate" + }, + { + "japanese": "ぺっきーバッジ", + "english": "Pecky Badge", + "effects": "HP+2000" + }, + { + "japanese": "グランドぺっきーぐるみ", + "english": "Grand Pecky", + "effects": "HP+25000" + }, + { + "japanese": "《英雄》の証", + "english": "Hero's Emblem", + "effects": "STR+50, CP+2 per turn" + }, + { + "japanese": "紅蓮の徽章", + "english": "Crimson Lotus Badge", + "effects": "HP+1500, STR/ATS+50\nPrevents Stat Down" + }, + { + "japanese": "獅子心大綬章", + "english": "Lion Heart", + "effects": "HP+3000, STR/ATS+75, SPD+5, 100% Hit\nPrevents Stat Down" + }, + { + "japanese": "テセウスリング", + "english": "RP Rank F - Reward\nTheseus Ring", + "effects": "STR/DEF/ADF+150, CP Recovery+60%" + }, + { + "japanese": "アーレスベルト", + "english": "RP Rank C - Reward\nAres Belt", + "effects": "STR/ATS+150, CP+4 per turn" + }, + { + "japanese": "ソロモンガーヴ", + "english": "RP Rank S - Reward\nSolomon Garb", + "effects": "HP+4000, EP+400, SPD+20\nPrevents All Abnormal Status" + } + ], + "CHARACTER SPECIFIC": [ + { + "japanese": "クマ男爵7号", + "english": "NADIA ONLY\nBaron Bear No. 7", + "effects": "ATS/ADF +50\nArts Cast time reduced by 33%" + }, + { + "japanese": "クイックキャリバー", + "english": "TOVAL ONLY\nQuick Caliber", + "effects": "ATS/ADF +250\nArts Cast time reduced by 50%" + }, + { + "japanese": "零のオーブ", + "english": "LLOYD ONLY\nZero Orb", + "effects": "STR/DEF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "麗のスフィア", + "english": "ELIE ONLY\nBeautiful Sphere", + "effects": "ATS/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "理のスフィア", + "english": "TIO ONLY\nSphere of Reason", + "effects": "ATS/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "闘のオーブ", + "english": "RANDY ONLY\nWar Orb", + "effects": "STR/DEF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "勇のスフィア", + "english": "NOEL ONLY\nBravery Sphere", + "effects": "STR/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "慧のオーブ", + "english": "WAZY ONLY\nWisdom Orb", + "effects": "STR/DEF/ATS+100, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "月のスフィア", + "english": "RIXIA ONLY\nMoon Sphere", + "effects": "STR/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "閃のオーブ", + "english": "REAN ONLY\nFlash Orb", + "effects": "STR/DEF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "暁のスフィア", + "english": "JUNA ONLY\nDawn Sphere", + "effects": "STR/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "剋のスフィア", + "english": "KURT ONLY\nSphere of Victory", + "effects": "STR/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "黒のスフィア", + "english": "ALTINA ONLY\nBlack Sphere", + "effects": "ATS/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "玲のスフィア", + "english": "MUSSE ONLY\nJewel Sphere", + "effects": "ATS/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "轟のオーブ", + "english": "ASH ONLY\nThunder Orb", + "effects": "STR/DEF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "翡のオーブ", + "english": "C ONLY\nJade Orb", + "effects": "STR/DEF/ATS+100, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "琥のスフィア", + "english": "LAPIS ONLY\nAmber Sphere", + "effects": "STR/ATS/ADF+100, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "疾のオーブ", + "english": "SWIN ONLY\nQuick Orb", + "effects": "STR/DEF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "恋のスフィア", + "english": "NADIA ONLY\nPassion Sphere", + "effects": "ATS/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "天のスフィア", + "english": "ALISA ONLY\nHeavenly Sphere", + "effects": "ATS/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "響のオーブ", + "english": "ELLIOTT ONLY\nSound Orb", + "effects": "DEF/ATS+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "凛のスフィア", + "english": "LAURA ONLY\nCold Sphere", + "effects": "STR/DEF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "識のオーブ", + "english": "MACHIAS ONLY\nOrb of Knowledge", + "effects": "STR/DEF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "智のスフィア", + "english": "EMMA ONLY\nOrb of Intellect ", + "effects": "ATS/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "煌のオーブ", + "english": "JUSIS ONLY\nShining Orb", + "effects": "STR/DEF/ATS+100, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "隼のスフィア", + "english": "FIE ONLY\nFalcon Sphere", + "effects": "STR/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "鳳のオーブ", + "english": "GAIUS ONLY\nPhoenix Orb", + "effects": "STR/DEF/ATS+100, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "白のスフィア", + "english": "MILLIUM ONLY\nWhite Sphere", + "effects": "STR/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "迅のスフィア", + "english": "SARA ONLY\nSpeed Sphere", + "effects": "STR/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "蒼のオーブ", + "english": "CROW ONLY\nBlue Orb", + "effects": "STR/DEF/ATS+100, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "宙のスフィア", + "english": "TOWA ONLY\nSpace Sphere", + "effects": "ATS/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "剛のスフィア", + "english": "ANGELICA ONLY\nStrength Sphere", + "effects": "STR/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "銅のオーブ", + "english": "GEORGE ONLY\nCopper Orb", + "effects": "STR/DEF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "慈のスフィア", + "english": "ELISE ONLY\nMercy Sphere", + "effects": "STR/ATS/ADF+100, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "愛のスフィア", + "english": "ALFIN ONLY\nLove Sphere", + "effects": "ATS/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "奏のオーブ", + "english": "OLIVIER ONLY\nEmperor Orb", + "effects": "DEF/ATS+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "朧のスフィア", + "english": "SHARON ONLY\nGloom Sphere", + "effects": "STR/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "霊のスフィア", + "english": "CELINE ONLY\nSpirit Sphere", + "effects": "ATS/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "緋のスフィア", + "english": "ROSELIA ONLY\nScarlet Sphere", + "effects": "ATS/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "絢のスフィア", + "english": "AURELIA ONLY\nOrnate Sphere", + "effects": "STR/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "洸のオーブ", + "english": "VICTOR ONLY\nRadiant Orb", + "effects": "STR/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "佳のスフィア", + "english": "CLAIRE ONLY\nSphere of Excellence", + "effects": "STR/ATS/ADF+100, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "業のオーブ", + "english": "LECHTER ONLY\nOrb of Karma", + "effects": "STR/DEF/ATS+100, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "陽のスフィア", + "english": "ESTELLE ONLY\nSun Sphere", + "effects": "STR/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "影のオーブ", + "english": "JOSHUA ONLY\nShadow Orb", + "effects": "STR/DEF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "刻のスフィア", + "english": "RENNE ONLY\nTime Sphere", + "effects": "ATS/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "機のスフィア", + "english": "TITA ONLY\nMachine Sphere", + "effects": "STR/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "竜のオーブ", + "english": "AGATE ONLY\nDragon Orb", + "effects": "STR/DEF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "誠のオーブ", + "english": "TOVAL ONLY\nOrb of Truth", + "effects": "DEF/ATS+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "戒のオーブ", + "english": "ARIOS ONLY\nOrb of Discipline", + "effects": "STR/DEF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "瞬のスフィア", + "english": "DUVALIE ONLY\nReflex Orb", + "effects": "STR/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "綺のスフィア", + "english": "VITA ONLY\nPure Sphere", + "effects": "ATS/ADF+150, SPD+15\nCP Recovery Rate+50%, CP+5 per turn" + }, + { + "japanese": "劫のオーブ", + "english": "Spoiler ONLY\nAlmighty Sphere", + "effects": "STR/DEF/ATS+200, SPD+30\nCP Recovery Rate+100%, CP+10 per turn" + } + ] +} \ No newline at end of file diff --git a/resources/braveOrders.json b/resources/braveOrders.json new file mode 100644 index 0000000..ff74f3c --- /dev/null +++ b/resources/braveOrders.json @@ -0,0 +1,487 @@ +{ + "AGATE": [ + { + "name": "Crimson Break", + "bpCost": 3, + "turns": 8, + "primaryEffect": "Break Damage+200%", + "secondaryEffect": "2 Turns STR Up (M)" + } + ], + "ALISA": [ + { + "name": "Golden Scheme", + "bpCost": 2, + "turns": 6, + "primaryEffect": "Break Damage+200%", + "secondaryEffect": "HP+EP 25% Recovery " + } + ], + "ALTINA": [ + { + "name": "Ebon Crest", + "bpCost": 4, + "turns": 4, + "primaryEffect": "Perfect Reflect" + } + ], + "ARIOS": [ + { + "name": "Roaring Wind", + "bpCost": 5, + "turns": 6, + "primaryEffect": "100% Evasion", + "secondaryEffect": "1 Turn STR Up (L)" + } + ], + "ASH": [ + { + "name": "Volcanic Hunt", + "bpCost": 2, + "turns": 5, + "primaryEffect": "50% Critical", + "secondaryEffect": "1 Turn STR+SPD Up (S)" + } + ], + "C": [ + { + "name": "Criminal Raid", + "bpCost": 1, + "turns": 5, + "primaryEffect": "30% Critical", + "secondaryEffect": "CP+15" + }, + { + "name": "Dark Requiem", + "bpCost": 2, + "turns": 8, + "primaryEffect": "Arts cast time 3/10", + "secondaryEffect": "EP 20% Recovery" + } + ], + "CELINE": [ + { + "name": "Deep Onyx", + "bpCost": 3, + "turns": 10, + "primaryEffect": "All received damage x0.4", + "secondaryEffect": "2 Turns DEF+ADF+SPD Up (S)" + } + ], + "CLAIRE": [ + { + "name": "Infinity Order", + "bpCost": 5, + "turns": 1, + "primaryEffect": "Break Damage+400%", + "secondaryEffect": "AT Advance" + } + ], + "CROW": [ + { + "name": "Chaos Grion", + "bpCost": 3, + "turns": 4, + "primaryEffect": "Damage Dealt+60%", + "secondaryEffect": "HP+EP 30% Recovery" + } + ], + "DUVALIE": [ + { + "name": "Lightning Sword", + "bpCost": 4, + "turns": 6, + "primaryEffect": "Delay x0.4", + "secondaryEffect": "2 Turns STR+SPD Up (M)" + } + ], + "ELIE": [ + { + "name": "Strike Bell", + "bpCost": 5, + "turns": 4, + "primaryEffect": "EP Cut 1/10", + "secondaryEffect": "AT Advance/Turn Reset" + } + ], + "ELISE": [ + { + "name": "Winter Wind", + "bpCost": 2, + "turns": 8, + "primaryEffect": "50% Evasion", + "secondaryEffect": "HP 15% Recovery, CP+15" + } + ], + "ELLIOT": [ + { + "name": "Sapphire Symphony", + "bpCost": 3, + "turns": 10, + "primaryEffect": "All received damage x0.3", + "secondaryEffect": "HP 30% Recovery" + } + ], + "EMMA": [ + { + "name": "Luminarion Force", + "bpCost": 2, + "turns": 8, + "primaryEffect": "Absorb Magic Attacks", + "secondaryEffect": "4 Turns ATS+ADF Up (M)" + } + ], + "ESTELLE": [ + { + "name": "Adamantine Formation", + "bpCost": 4, + "turns": 8, + "primaryEffect": "All received damage x0.4", + "secondaryEffect": "CP+40" + } + ], + "FIE": [ + { + "name": "Zephyr Tempest", + "bpCost": 3, + "turns": 10, + "primaryEffect": "Halves Delay", + "secondaryEffect": "2 Turns Insight" + } + ], + "GAIUS": [ + { + "name": "Dominion Roar", + "bpCost": 4, + "turns": 8, + "primaryEffect": "Break Damage+200%", + "secondaryEffect": "HP 80% Recovery" + } + ], + "JOSHUA": [ + { + "name": "Carving Shadow", + "bpCost": 2, + "turns": 6, + "primaryEffect": "Halves Delay", + "secondaryEffect": "HP 10% Recovery, CP+10" + } + ], + "JUNA": [ + { + "name": "Sledgehammer", + "bpCost": 2, + "turns": 3, + "primaryEffect": "Break Damage+300%" + } + ], + "JUSIS": [ + { + "name": "Noblesse Ark", + "bpCost": 2, + "turns": 8, + "primaryEffect": "Damage Dealt+30% ", + "secondaryEffect": "2 Turns STR+ATS+SPD Up (S)" + } + ], + "KURT": [ + { + "name": "Wind Blade", + "bpCost": 3, + "turns": 4, + "primaryEffect": "Delay x0.3", + "secondaryEffect": "N/A" + } + ], + "LAPIS": [ + { + "name": "Palace Copellion ", + "bpCost": 3, + "turns": 12, + "primaryEffect": "All received damage x0.4", + "secondaryEffect": "HP 20% Recovery" + } + ], + "LAURA": [ + { + "name": "Avalon Hearts", + "bpCost": 3, + "turns": 3, + "primaryEffect": "Damage Dealt+80%", + "secondaryEffect": "1 Turn Insight" + } + ], + "LECHTER": [ + { + "name": "Fool Vermillion", + "bpCost": 2, + "turns": 6, + "primaryEffect": "Damage Dealt+40%", + "secondaryEffect": "2 Turns Insight " + } + ], + "LLOYD": [ + { + "name": "Raging Hammer", + "bpCost": 1, + "turns": 4, + "primaryEffect": "Break Damage+150%", + "secondaryEffect": "CP+15" + }, + { + "name": "Toughness Shield", + "bpCost": 1, + "turns": 6, + "primaryEffect": "All received damage x0.5 " + } + ], + "MACHIAS": [ + { + "name": "Omega Operation", + "bpCost": 3, + "turns": 8, + "primaryEffect": "Halves Delay", + "secondaryEffect": "2 Turns STR+DEF Up (M)" + } + ], + "MILLIUM": [ + { + "name": "White Decoration", + "bpCost": 4, + "turns": 8, + "primaryEffect": "All received damage x0.1" + } + ], + "MUSSE": [ + { + "name": "Akashic Arts", + "bpCost": 3, + "turns": 8, + "primaryEffect": "EP Consumption 2/5", + "secondaryEffect": "EP 25% Recovery" + } + ], + "NADIA": [ + { + "name": "Fancy Spell", + "bpCost": 3, + "turns": 8, + "primaryEffect": "Halves EP Consumption", + "secondaryEffect": "2 Turns ATS+SPD Up (S)" + } + ], + "NOEL": [ + { + "name": "Assault Guardian", + "bpCost": 2, + "turns": 6, + "primaryEffect": "All received damage x0.4", + "secondaryEffect": "2 Turns STR Up (M) " + } + ], + "RANDY": [ + { + "name": "Proud Warrior", + "bpCost": 2, + "turns": 6, + "primaryEffect": "Damage Dealt+30%", + "secondaryEffect": "1 turn STR up (M)" + } + ], + "REAN": [ + { + "name": "Raging Flame", + "bpCost": 1, + "turns": 4, + "primaryEffect": "Damage Dealt+25%", + "secondaryEffect": "CP+15" + }, + { + "name": "Solid Formation - Black Tortoise", + "bpCost": 2, + "turns": 8, + "primaryEffect": "All received damage x0.5", + "secondaryEffect": "HP+EP 15% Recovery" + } + ], + "RENNE": [ + { + "name": "Calamity Sphere", + "bpCost": 5, + "turns": 4, + "primaryEffect": "Arts cast time 3/10", + "secondaryEffect": "Acceleration" + } + ], + "RIXIA": [ + { + "name": "Shadow Art: Shiranuhi", + "bpCost": 2, + "turns": 6, + "primaryEffect": "Halves Delay", + "secondaryEffect": "2 Turns SPD Up (M)" + } + ], + "SARA": [ + { + "name": "Flame Lightning", + "bpCost": 5, + "turns": 1, + "primaryEffect": "Delay x0.2", + "secondaryEffect": "AT Advance" + } + ], + "SCHERAZARD": [ + { + "name": "Heaven's Kiss", + "bpCost": 5, + "turns": 1, + "primaryEffect": "100% Critical", + "secondaryEffect": "AT Advance" + } + ], + "SHARON": [ + { + "name": "Phantasmal Butterfly", + "bpCost": 4, + "turns": 4, + "primaryEffect": "100% Evasion", + "secondaryEffect": "HP 25% Recovery, CP+25" + } + ], + "SWIN": [ + { + "name": "Shadow Step", + "bpCost": 2, + "turns": 6, + "primaryEffect": "Halves Delay", + "secondaryEffect": "2 Turns STR+MOV Up (S)" + } + ], + "TIO": [ + { + "name": "Aeon Shield", + "bpCost": 4, + "turns": 4, + "primaryEffect": "Perfect Reflection", + "secondaryEffect": "CP+30" + } + ], + "TITA": [ + { + "name": "Blast Force", + "bpCost": 4, + "turns": 6, + "primaryEffect": "Damage Dealt+60% ", + "secondaryEffect": "2 Turns STR+DEF Up (M)" + } + ], + "TOWA": [ + { + "name": "Ninefold Formation", + "bpCost": 5, + "turns": 12, + "primaryEffect": "All received damage x0.2", + "secondaryEffect": "HP 50% Recovery" + } + ], + "WAZY": [ + { + "name": "Testaments Cross", + "bpCost": 3, + "turns": 8, + "primaryEffect": "Arts cast time 1/5", + "secondaryEffect": "2 Turns ATS Up (M)" + } + ], + "ALFIN": [ + { + "name": "Sacred Shell", + "bpCost": 6, + "turns": 12, + "primaryEffect": "Absorb Magic Attacks", + "secondaryEffect": "CP+80" + } + ], + "ANGELICA": [ + { + "name": "Black Dragon", + "bpCost": 3, + "turns": 6, + "primaryEffect": "60% Critical", + "secondaryEffect": "3 Turns Insight" + } + ], + "AURELIA": [ + { + "name": "Golden Dragon", + "bpCost": 4, + "turns": 4, + "primaryEffect": "80% Critical", + "secondaryEffect": "CP+50" + } + ], + "GEORGE": [ + { + "name": "Draupnir Guard", + "bpCost": 5, + "turns": 10, + "primaryEffect": "Absorb Magic Attacks", + "secondaryEffect": "Perfect Guard" + } + ], + "OLIVERT": [ + { + "name": "Elegant Waltz", + "bpCost": 4, + "turns": 8, + "primaryEffect": "EP Consumption 1/5", + "secondaryEffect": "2 Turns ATS+ADF Up (M)" + } + ], + "ROSELIA": [ + { + "name": "Red Kagura", + "bpCost": 5, + "turns": 4, + "primaryEffect": "Arts cost 0 EP", + "secondaryEffect": "1 Turn ATS Up (L)" + } + ], + "TOVAL": [ + { + "name": "Spiral Arts", + "bpCost": 3, + "turns": 4, + "primaryEffect": "No cast time on Arts", + "secondaryEffect": "1 Turn SPD Up (M)" + } + ], + "VICTOR": [ + { + "name": "Valiant Moon", + "bpCost": 3, + "turns": 4, + "primaryEffect": "Break Damage+300%", + "secondaryEffect": "1 Turn STR+ATS Up (M)" + } + ], + "VITA": [ + { + "name": "Azure Peacock", + "bpCost": 5, + "turns": 4, + "primaryEffect": "Damage Dealt+100%", + "secondaryEffect": "N/A" + } + ], + "Spoilers": [ + { + "name": "Oblivion Blaze", + "bpCost": 8, + "turns": 7, + "primaryEffect": "100% Critical", + "secondaryEffect": "CP+100" + } + ] +} \ No newline at end of file diff --git a/resources/crafts.json b/resources/crafts.json index 4c996cd..22ecfc1 100644 --- a/resources/crafts.json +++ b/resources/crafts.json @@ -1,28 +1,32 @@ { "AGATE": [ { - "name": "[C]Draguna Edge\n→[C]Draguna Edge II", + "type": "C", + "name": "Draguna Edge\n→Draguna Edge II", "cpCost": 30, "pbu": "C/D/A\nB/D/A", "aoe": "Area - Line (M)", "effects": "Delay +2, Burn 30%\nRank 2 Increases Delay by +2 and Burn chance to 50%. [Obtained at level 113]" }, { - "name": "[C]Beat Down", + "type": "C", + "name": "Beat Down", "cpCost": 80, "pbu": "S/SS/D", "aoe": "Area - Set (L)", "effects": "Faint 50%" }, { - "name": "[C]Wild Rage", + "type": "C", + "name": "Wild Rage", "cpCost": 0, "pbu": "N/A", "aoe": "Self", "effects": "HP-40%, 4 Turns Str (L) CP+80" }, { - "name": "[S]Dragon Fall\n→[S]Dragon Fall II", + "type": "S", + "name": "Dragon Fall\n→Dragon Fall II", "cpCost": 100, "pbu": "4S+/C\n5S/C", "aoe": "All", @@ -31,35 +35,40 @@ ], "ALISA": [ { - "name": "[C]Rosetta Arrow\n→[C]Rosetta Arrow II", + "type": "C", + "name": "Rosetta Arrow\n→Rosetta Arrow II", "cpCost": 30, "pbu": "A/C+/B\nA+/B/B+", "aoe": "Area - Line (M+)", "effects": "Impede (100% chance), Burn (25% chance), Base Critical Chance (25%)\nRank 2 increases power, and Base Critical Chance to 30%. [Obtained at level 122]" }, { - "name": "[C]Molten Storm II", + "type": "C", + "name": "Molten Storm II", "cpCost": 60, "pbu": "B/B+/D", "aoe": "Area - Circle (L)", "effects": "Seal+Burn (50% chance)" }, { - "name": "[C]Heavenly Gift II\n→[C]Heavenly Gift III", + "type": "C", + "name": "Heavenly Gift II\n→Heavenly Gift III", "cpCost": 50, "pbu": "N/A", "aoe": "Area - Circle (L+)", "effects": "3 Turns Insight, CP+25, HP+20%\nRank 2 Increases CP+30, HP25% Recovery. [Obtained through Door of Trials]" }, { - "name": "[C]Orbal Gear Summon II", + "type": "C", + "name": "Orbal Gear Summon II", "cpCost": "EP 200", "pbu": "SS/B/D", "aoe": "All", "effects": "Once per battle. 100% Seal" }, { - "name": "[S]Gabriel Arrow III", + "type": "S", + "name": "Gabriel Arrow III", "cpCost": 100, "pbu": "4S/D", "aoe": "All", @@ -68,49 +77,56 @@ ], "ALTINA": [ { - "name": "[C]Detector Δ", + "type": "C", + "name": "Detector Δ", "cpCost": 20, "pbu": "N/A", "aoe": "Single", "effects": "Analyze, 4 Turns Balance Down 100%, 4 Turns STR+SPD Down (M) " }, { - "name": "[C]Brionac II\n→[C]Brionac III", + "type": "C", + "name": "Brionac II\n→Brionac III", "cpCost": 30, "pbu": "B/D/B\nB+/D/B+", "aoe": "Area - Line (M+)", "effects": "4 Turns DEF+ADF Down (S)\nObtained at level 120" }, { - "name": "[C]Argem Heal\n→[C]Argem Heal II", + "type": "C", + "name": "Argem Heal\n→Argem Heal II", "cpCost": 40, "pbu": "N/A", "aoe": "Area - Circle (M)", "effects": "HP Restore (30%), CP+30, 4 Turns DEF Up (S)\nRank 2 increases DEF buff to (M) [Obtained at level 134]" }, { - "name": "[C]Fragarach II", + "type": "C", + "name": "Fragarach II", "cpCost": 60, "pbu": "S/SS/D", "aoe": "Area - Circle (M)", "effects": "Delay+4" }, { - "name": "[C]Ebon Shade EX ", + "type": "C", + "name": "Ebon Shade EX ", "cpCost": 60, "pbu": "N/A", "aoe": "Self", "effects": "Physical Reflect, 2 Turns Stealth [Obtained at level 105]" }, { - "name": "[S]Arcadias Gear\n→[S]Arcadias Gear II", + "type": "S", + "name": "Arcadias Gear\n→Arcadias Gear II", "cpCost": 100, "pbu": "SS+/C\n4S/C", "aoe": "Area - Line (LL)", "effects": "Rank 2 adds 20% Critical [Obtained at level 102]" }, { - "name": "[S]Solaris Bringer\n→[S]Solaris Bringer II", + "type": "S", + "name": "Solaris Bringer\n→Solaris Bringer II", "cpCost": 100, "pbu": "SSS+/C\n4S+/C", "aoe": "All", @@ -119,28 +135,32 @@ ], "ARIOS": [ { - "name": "[C]Double Arcane Gale", + "type": "C", + "name": "Double Arcane Gale", "cpCost": 40, "pbu": "Ex2/D/C", "aoe": "Area - Line (LL)", "effects": "Impede (100% chance), Confuse (60% chance)" }, { - "name": "[C]Wind God's Wave\n→[C]Zenith Wind God's Wave", + "type": "C", + "name": "Wind God's Wave\n→Zenith Wind God's Wave", "cpCost": 80, "pbu": "SS/S/D\nSS+/S+/D ", "aoe": "Area - Circle (M) ", "effects": "Seal+Faint (40% chance) \nRank 2 increases chance of Seal or Faint to 60% [Obtained at level 128]" }, { - "name": "[C]Qinggong", + "type": "C", + "name": "Qinggong", "cpCost": 40, "pbu": "N/A", "aoe": "Self", "effects": "3 Turns Insight, 4 Turns STR+SPD Up (M)" }, { - "name": "[S]Second Slash: Storm God's Heavenly Pierce\n→[S]Second Slash: Storm God's Heavenly Pierce EX", + "type": "S", + "name": "Second Slash: Storm God's Heavenly Pierce\n→Second Slash: Storm God's Heavenly Pierce EX", "cpCost": 100, "pbu": "4S+/D\n5S/D", "aoe": "All", @@ -149,49 +169,56 @@ ], "ASH": [ { - "name": "[C]Rumbling Smash II\n→[C]Rumbling Smash III", + "type": "C", + "name": "Rumbling Smash II\n→Rumbling Smash III", "cpCost": 30, "pbu": "B/B/D\nB+/B/D", "aoe": "Area - Cricle (M)", "effects": "Impede (100% chance), Faint (40% chance)\nRank 3 increases Faint chance to 60% [Obtained at level 103]" }, { - "name": "[C]Reaper's Whirlwind II", + "type": "C", + "name": "Reaper's Whirlwind II", "cpCost": 80, "pbu": "A/D/B", "aoe": "Area - Circle (L)", "effects": "Deathblow+Nightmare (60% chance)" }, { - "name": "[C]Unbound Rage", + "type": "C", + "name": "Unbound Rage", "cpCost": "10", "pbu": "N/A", "aoe": "Self", "effects": "2 Turns STR Up (L), CP+50" }, { - "name": "[C]Void Breaker EX", + "type": "C", + "name": "Void Breaker EX", "cpCost": 60, "pbu": "S+/SS/SS", "aoe": "Single", "effects": "4 Turns DEF Down (L) [Obtained at level 106]" }, { - "name": "[C]Despair Throw\n→[C]Despair Throw II", + "type": "C", + "name": "Despair Throw\n→Despair Throw II", "cpCost": 40, "pbu": "B+/D/D\nA/D/D", "aoe": "Area - Line (M+)", "effects": "1 Turn Balance Down 50%\nRank 2 increases Balance Down to 100% [Obtained from Door of Trials]" }, { - "name": "[S]Belial Raid\n→[S]Belial Raid II", + "type": "S", + "name": "Belial Raid\n→Belial Raid II", "cpCost": 100, "pbu": "SS+/D\n4S+/C", "aoe": "Area - Circle (LL)", "effects": "Deathblow+Confuse (30% chance)\nRank 2 increases Deathblow+Confuse chance to 60% [Obtained at level 108]" }, { - "name": "[S]Sinner's Revelry\n→[S]Sinner's Revelry II", + "type": "S", + "name": "Sinner's Revelry\n→Sinner's Revelry II", "cpCost": 100, "pbu": "4S+/D\n5S+/C", "aoe": "Single", @@ -200,35 +227,40 @@ ], "C": [ { - "name": "[C]Soul Eater\n→[C]Soul Eater II", + "type": "C", + "name": "Soul Eater\n→Soul Eater II", "cpCost": 30, "pbu": "C/C/C\nC+/C+/C+", "aoe": "Area - Circle (S+)", "effects": "Impede (100% chance). Depending on damage, restores all allies HP+CP.\nObtained at level 120" }, { - "name": "[C]Renegade Edge", + "type": "C", + "name": "Renegade Edge", "cpCost": 60, "pbu": "B+/A+/D", "aoe": "Area - Circle (M+)", "effects": "Mute+Blind (80% chance), Delay+4" }, { - "name": "[C]Strange Sword Zewar", + "type": "C", + "name": "Strange Sword Zewar", "cpCost": 80, "pbu": "S/D/S", "aoe": "Area - Circle (M+)", "effects": "3 Turns Sword Flash, SPD Up (L)" }, { - "name": "[C]Noblesse Rune\n→[C]Noblesse Rune II", + "type": "C", + "name": "Noblesse Rune\n→Noblesse Rune II", "cpCost": 40, "pbu": "N/A", "aoe": "Self", "effects": "3 Turns STR+ATS Up (M), removes all statuses and Stat Down, BP+1 [Obtained at level 111]\nRank 2 increases buffs to (L) [Obtained at level 136]" }, { - "name": "[S]Blutgang Rain\n→[S]Blutgang Rain II", + "type": "S", + "name": "Blutgang Rain\n→Blutgang Rain II", "cpCost": 100, "pbu": "4S+/S\n5S/S", "aoe": "All", @@ -237,14 +269,16 @@ ], "CELINE": [ { - "name": "[C]Nine Lives\n→[C]Nine Lives II", + "type": "C", + "name": "Nine Lives\n→Nine Lives II", "cpCost": 100, "pbu": "N/A", "aoe": "All Allies", "effects": "Removes all Statuses/Stat Down, +3 BP\nRank 2 increases BP by 1, and adds CP+20 [Obtained from Door of Trials] " }, { - "name": "[C]Crimson Tail", + "type": "C", + "name": "Crimson Tail", "cpCost": 100, "pbu": "SSS/S/D", "aoe": "Area - Circle (LL)", @@ -253,28 +287,32 @@ ], "CLAIRE": [ { - "name": "[C]Mortal Mirage\n→[C]Mortal Mirage II", + "type": "C", + "name": "Mortal Mirage\n→Mortal Mirage II", "cpCost": 30, "pbu": "B/D/A\nB+/D/S", "aoe": "Area - Line (S+)", "effects": "Delay+2, Deathblow (20% chance)\nRank 2 increases Delay to 4, Deathblow chance to 40% [Obtained at level 114]" }, { - "name": "[C]Frigid Rain", + "type": "C", + "name": "Frigid Rain", "cpCost": 60, "pbu": "B/A/D", "aoe": "Area - Circle (L)", "effects": "Freeze (60% chance)" }, { - "name": "[C]Concentration", + "type": "C", + "name": "Concentration", "cpCost": 30, "pbu": "N/A", "aoe": "Self", "effects": "3 Turns Insight, 4 Turns STR+ATS Up (M)" }, { - "name": "[S]Kaleido Force\n→[S]Kaleido Force II", + "type": "S", + "name": "Kaleido Force\n→Kaleido Force II", "cpCost": 100, "pbu": "4S/D\n4S+/C", "aoe": "All ", @@ -283,42 +321,48 @@ ], "CROW": [ { - "name": "[C]Chronos Bullet", + "type": "C", + "name": "Chronos Bullet", "cpCost": 30, "pbu": "B/C/D", "aoe": "Area - Line (M)", "effects": "Confuse+Faint (40% chance)" }, { - "name": "[C]Quick Burst II", + "type": "C", + "name": "Quick Burst II", "cpCost": 40, "pbu": "C/D/D", "aoe": "Area - Circle (L)", "effects": "Impede (100% chance), 4 Turns SPD Down (L)" }, { - "name": "[C]Criminal Edge\n→[C]Criminal Edge II", + "type": "C", + "name": "Criminal Edge\n→Criminal Edge II", "cpCost": 60, "pbu": "S/A/D\nS+/A+/D", "aoe": "Area - Circle (S+)", "effects": "Delay+2, Critical+15%\nRank 2 increases Delay to 4, Critical chance to 20% [Obtained at level 121]" }, { - "name": "[C]Eye of Balor", + "type": "C", + "name": "Eye of Balor", "cpCost": 80, "pbu": "A/D/B", "aoe": "Area - Circle (L)", "effects": "Charm+Nightmare+Deathblow (20% chance)" }, { - "name": "[C]Destiny Blue\n→[C]Destiny Blue II", + "type": "C", + "name": "Destiny Blue\n→Destiny Blue II", "cpCost": 100, "pbu": "N/A", "aoe": "Self", "effects": "3 Turns Insight, 6 Turns STR+ATS+SPD Up (L)\nRank 2 increases buffs by 1 turn [Obtained at level 129]" }, { - "name": "[S]Vorpal Slayer\n→[S]Vorpal Slayer II", + "type": "S", + "name": "Vorpal Slayer\n→Vorpal Slayer II", "cpCost": 100, "pbu": "4S/C\n5S/A", "aoe": "All", @@ -327,42 +371,48 @@ ], "DUVALIE": [ { - "name": "[C]Flame Sword", + "type": "C", + "name": "Flame Sword", "cpCost": 40, "pbu": "D+/C/D+", "aoe": "Area - Circle (L)", "effects": "Burn (50% chance)" }, { - "name": "[C]Ice Sword", + "type": "C", + "name": "Ice Sword", "cpCost": 40, "pbu": "D+/C/D+", "aoe": "Area - Circle (L)", "effects": "Freeze (50% chance)" }, { - "name": "[C]Lightning Sword", + "type": "C", + "name": "Lightning Sword", "cpCost": 40, "pbu": "D+/C/D+", "aoe": "Area - Circle (L)", "effects": "Seal (50% chance)" }, { - "name": "[C]Godspeed Slash\n→[C]Godspeed Slash EX", + "type": "C", + "name": "Godspeed Slash\n→Godspeed Slash EX", "cpCost": 60, "pbu": "C/A/D\nB/A/D", "aoe": "Area - Line (S+)", "effects": "Impede (100% chance), Delay+6\nRank 2 increases added Delay to 8 [Obtained at level 123]" }, { - "name": "[C]Sword Emperor Formation\n→[C]Sword Emperor Formation EX", + "type": "C", + "name": "Sword Emperor Formation\n→Sword Emperor Formation EX", "cpCost": 80, "pbu": "S+/D/B+\nSS/D/B+", "aoe": "Single Enemy", "effects": "Confuse+Critical (40% chance)\nRank 2 increases chance of Confuse or Critical to 50% [Obtained from Door of Trials]" }, { - "name": "[S]Prism Calibur\n→[S]Prism Calibur II", + "type": "S", + "name": "Prism Calibur\n→Prism Calibur II", "cpCost": 100, "pbu": "4S/D\n4S+/C", "aoe": "All", @@ -371,28 +421,32 @@ ], "ELIE": [ { - "name": "[C]Mirage Swan\n→[C]Mirage Swan II", + "type": "C", + "name": "Mirage Swan\n→Mirage Swan II", "cpCost": 30, "pbu": "C/C/C+", "aoe": "Area - Circle (M)", "effects": "Impede (100% chance), 4 Turns SPD Down (M)\nRank 2 Increases Power. [Obtained at level 173]" }, { - "name": "[C]Holy Bullet\n→[C]Holy Bullet II", + "type": "C", + "name": "Holy Bullet\n→Holy Bullet II", "cpCost": 40, "pbu": "N/A", "aoe": "Party - Circle (L+)", "effects": "25% HP Recovery, CP+25\nRank 2 Increaes HP/CP Recovery to 30%/30. [Obtained at level 133]" }, { - "name": "[C]Divine Crusade", + "type": "C", + "name": "Divine Crusade", "cpCost": 80, "pbu": "S+/C/D", "aoe": "Area - Line (M)", "effects": "2 Turns \"ADEF DOWN\". [Obtained at level 107]" }, { - "name": "[S]Aura Rain\n→[S]Celestia Rain", + "type": "S", + "name": "Aura Rain\n→Celestia Rain", "cpCost": 100, "pbu": "N/A", "aoe": "Area - Circle (LL+)\nRank 2 Increases to ALL", @@ -401,28 +455,32 @@ ], "ELISE": [ { - "name": "[C]Swallow Tail\n→[C]Swallow Tail II", + "type": "C", + "name": "Swallow Tail\n→Swallow Tail II", "cpCost": 20, "pbu": "C/D+/D+\nC+/C/C", "aoe": "Area - Line (S+)", "effects": "Impede (100% chance)\nObtained at level 125" }, { - "name": "[C]Holy Squall", + "type": "C", + "name": "Holy Squall", "cpCost": 50, "pbu": "N/A", "aoe": "Area - Circle (L)", "effects": "Cures all status ailments+Stat Down, HP 50% Recovery" }, { - "name": "[C]Serenity", + "type": "C", + "name": "Serenity", "cpCost": 30, "pbu": "N/A", "aoe": "Self", "effects": "4 Turns STR+ATS+SPD Up (S)" }, { - "name": "[S]Secret Sword: Phoenix Flower\n→[S]True Phoenix Flower", + "type": "S", + "name": "Secret Sword: Phoenix Flower\n→True Phoenix Flower", "cpCost": 100, "pbu": "SSS+/D\n4S/D", "aoe": "All", @@ -431,28 +489,32 @@ ], "ELLIOT": [ { - "name": "[C]Detector α", + "type": "C", + "name": "Detector α", "cpCost": 20, "pbu": "N/A", "aoe": "Single Enemy", "effects": "Analyze, 4 Turns Balance Down (100%), 4 Turns STR+ATS Down (M)" }, { - "name": "[C]Holy Song II\n→[C]Holy Song III", + "type": "C", + "name": "Holy Song II\n→Holy Song III", "cpCost": 40, "pbu": "N/A", "aoe": "Area - Circle (LL+)", "effects": "HP 35% Recovery, cures all status ailments and Stat Down\nRank 3 increases HP Recovery to 40% [Obtained at level 123]" }, { - "name": "[C]Blue Oratorio\n→[C]Blue Oratorio II", + "type": "C", + "name": "Blue Oratorio\n→Blue Oratorio II", "cpCost": 30, "pbu": "C/S\nC+/S+", "aoe": "Area - Circle (M)", "effects": "Sleep+Mute (80% chance)\nRank 2 increases Sleep+Mute chance to 100% [Obtained at level 106] " }, { - "name": "[S]Remedy Fantasia II\n→[S]Remedy Fantasia III", + "type": "S", + "name": "Remedy Fantasia II\n→Remedy Fantasia III", "cpCost": 100, "pbu": "N/A", "aoe": "All Allies", @@ -461,35 +523,40 @@ ], "EMMA": [ { - "name": "[C]Detector β", + "type": "C", + "name": "Detector β", "cpCost": 20, "pbu": "N/A", "aoe": "Single", "effects": "Analyze, 4 Turns Balance Down (100%), 4 Turns DEF+ADF Down (S)" }, { - "name": "[C]Serene Blessing II\n→[C]Crescent Blessing", + "type": "C", + "name": "Serene Blessing II\n→Crescent Blessing", "cpCost": 30, "pbu": "N/A", "aoe": "Area - Circle (M)", "effects": "Cures all Statuses+Stat Down+K.O, HP 20% Recovery, CP+40\nIncreases HP Recovery to 25%, CP increase to 50, adds Magic Reflect [Obtained from Episode]" }, { - "name": "[C]Eclipse Edge II\n→[C]Eclipse Edge III", + "type": "C", + "name": "Eclipse Edge II\n→Eclipse Edge III", "cpCost": 40, "pbu": "A/D+/A\nA+/D+/A", "aoe": "Area - Line (M+)", "effects": "4 Turns ATS Down (L)\nObtained at level 113" }, { - "name": "[C]Vorpal Flare II", + "type": "C", + "name": "Vorpal Flare II", "cpCost": 80, "pbu": "S+/S", "aoe": "Area - Circle (L)", "effects": "Burn+Confuse (40% chance)" }, { - "name": "[S]Palace of Eregion II\n→[S]Palace of Eregion III", + "type": "S", + "name": "Palace of Eregion II\n→Palace of Eregion III", "cpCost": 100, "pbu": "N/A", "aoe": "Allies", @@ -498,21 +565,24 @@ ], "ESTELLE": [ { - "name": "[C]Whirlwind\n→[C]Zenith Whirlwind ", + "type": "C", + "name": "Whirlwind\n→Zenith Whirlwind ", "cpCost": 20, "pbu": "D/D/A\nD+/D/A", "aoe": "Area - Circle - L", "effects": "Knockback, 4 Turns Def Down (S)\nRank 2 Increases Def Down to (M) [Obtained at level 128]" }, { - "name": "[C]Sakura Barrage", + "type": "C", + "name": "Sakura Barrage", "cpCost": 40, "pbu": "S+/SS/C", "aoe": "Single", "effects": "Faint (70%)" }, { - "name": "[S]Wheel of Time\n→[S]Zenith Wheel of Time", + "type": "S", + "name": "Wheel of Time\n→Zenith Wheel of Time", "cpCost": 100, "pbu": "5S/S\n5S+/S", "aoe": "Single", @@ -521,35 +591,40 @@ ], "FIE": [ { - "name": "[C]Sweep II", + "type": "C", + "name": "Sweep II", "cpCost": 30, "pbu": "C/B/D", "aoe": "Area - Circle (L)", "effects": "Impede (100% chance)" }, { - "name": "[C]Cipher Edge II\n→[C]Cipher Edge III", + "type": "C", + "name": "Cipher Edge II\n→Cipher Edge III", "cpCost": 40, "pbu": "A/D+/A+\nA+/D+/S", "aoe": "Area - Line (M+)", "effects": "Deathblow (30% chance)\nRank 3 increases Deathblow chance to 50% [Obtained at level 119] " }, { - "name": "[C]Tri Cyclone II", + "type": "C", + "name": "Tri Cyclone II", "cpCost": 60, "pbu": "S+/S+/D", "aoe": "Area - Circle (S)", "effects": "Seal (60% chance), Delay+6" }, { - "name": "[C]Concealing Wind II\n→[C]Concealing Wind III", + "type": "C", + "name": "Concealing Wind II\n→Concealing Wind III", "cpCost": 40, "pbu": "N/A", "aoe": "Self", "effects": "2 Turns Stealth, 4 Turns STR/SPD Up (M)\nRank 3 increases buffs by 1 turn [Obtained at level 128]" }, { - "name": "[S]Lethal Crusade II\n→[S]Lethal Crusade III", + "type": "S", + "name": "Lethal Crusade II\n→Lethal Crusade III", "cpCost": 100, "pbu": "4S/D\n4S+/C", "aoe": "All", @@ -558,35 +633,40 @@ ], "GAIUS": [ { - "name": "[C]Gale Storm II\n→[C]Gale Storm III", + "type": "C", + "name": "Gale Storm II\n→Gale Storm III", "cpCost": 30, "pbu": "D+/B/C\nC/B/C", "aoe": "Area - Line (L+)", "effects": "1 Turn Balance Down 100%\nRank 3 increases Balance Down by 1 turn [Obtained at level 114]" }, { - "name": "[C]Turbulence II\n→[C]Turbulence III", + "type": "C", + "name": "Turbulence II\n→Turbulence III", "cpCost": 40, "pbu": "B/C/D\nB+/C/D", "aoe": "Area - Circle (LL)", "effects": "Impede (100% chance, Blind (60% chance)\nRank 3 increases Blind chance to 100% [Obtained at level 125] " }, { - "name": "[C]True Lightning Fang", + "type": "C", + "name": "True Lightning Fang", "cpCost": 80, "pbu": "SS/S/D", "aoe": "Area - Circle (M)", "effects": "Delay+4, Seal (60% chance)" }, { - "name": "[C]True Golden Roar", + "type": "C", + "name": "True Golden Roar", "cpCost": 0, "pbu": "N/A", "aoe": "Self", "effects": "HP-40%, 4 Turns STR+DEF Up (M) CP+80" }, { - "name": "[S]True Howling Heavens\r\n→[S]Zenith Howling Heavens", + "type": "S", + "name": "True Howling Heavens\r\n→Zenith Howling Heavens", "cpCost": 100, "pbu": "4S+/D 5S/D", "aoe": "All", @@ -595,21 +675,24 @@ ], "JOSHUA": [ { - "name": "[C]Shadow Fang\n→[C] Zenith Shadow Fang", + "type": "C", + "name": "Shadow Fang\n→ Zenith Shadow Fang", "cpCost": 40, "pbu": "Ex2/B/D\nDx2/A/D", "aoe": "Area - Line (S+)", "effects": "Impede (100%), Delay +2\nRank 2 Increases Delay to +4 [Obtained at level 131]" }, { - "name": "[C]Black Fang\n→[C]Zenith Black Fang", + "type": "C", + "name": "Black Fang\n→Zenith Black Fang", "cpCost": 80, "pbu": "S/D/B+\nS+/D/A", "aoe": "Area - Circle (L)", "effects": "2 Turns Stealth\nRank 2 Increases power. [Obtained through Door of Trials]" }, { - "name": "[S]Phantom Raid\n→[S]Zenith Phantom Raid", + "type": "S", + "name": "Phantom Raid\n→Zenith Phantom Raid", "cpCost": 100, "pbu": "4S/D\n4S+/D", "aoe": "All", @@ -618,49 +701,56 @@ ], "JUNA": [ { - "name": "[C]Cross Break II\n→[C]Cross Break III", + "type": "C", + "name": "Cross Break II\n→Cross Break III", "cpCost": 30, "pbu": "B/S+/D+\nB+/S+/D+", "aoe": "Area - Circle (M)", "effects": "Impede (100% chance), Faint (40% chance)\nRank 3 increases Faint chance to 60% [Obtained at level 132]" }, { - "name": "[C]Gemini Blast II", + "type": "C", + "name": "Gemini Blast II", "cpCost": 40, "pbu": "D+/D/D", "aoe": "Area - Circle (L)", "effects": "4 Turns DEF/SPD Down (M)" }, { - "name": "[C]Brave Smash", + "type": "C", + "name": "Brave Smash", "cpCost": 60, "pbu": "S/C/A", "aoe": "Area - Line (M+)", "effects": "Seal (60% chance) [Obtained at level 101]" }, { - "name": "[C]Quick Star EX", + "type": "C", + "name": "Quick Star EX", "cpCost": 80, "pbu": "N/A", "aoe": "Area - Circle (M+)", "effects": "AT Advance, 3 Turns SPD Up (M) (Juna not affected) [Obtained at level 119]" }, { - "name": "[C]Crimson Heart", + "type": "C", + "name": "Crimson Heart", "cpCost": 30, "pbu": "N/A", "aoe": "Self", "effects": "4 Turns STR/DEF Up (M), BP+1" }, { - "name": "[S]Excel Breaker\n→[S]Excel Breaker II", + "type": "S", + "name": "Excel Breaker\n→Excel Breaker II", "cpCost": 100, "pbu": "SS+/B\nSSS+/A", "aoe": "Area - Circle (LL)", "effects": "Rank 2 obtained at level 107" }, { - "name": "[S]Valiant Charge\n→[S]Valiant Charge II", + "type": "S", + "name": "Valiant Charge\n→Valiant Charge II", "cpCost": 100, "pbu": "SSS/A\n4S/A", "aoe": "All", @@ -669,35 +759,40 @@ ], "JUSIS": [ { - "name": "[C]Arc Slicer", + "type": "C", + "name": "Arc Slicer", "cpCost": 40, "pbu": "A/S/D", "aoe": "Area - Circle (M)", "effects": "3 Turns ATS+ADF Down (L)" }, { - "name": "[C]Treasure Sword II", + "type": "C", + "name": "Treasure Sword II", "cpCost": 60, "pbu": "S/C/A+", "aoe": "Area - Circle (M)", "effects": "Impede (100% chance), Delay+4, Freeze (50% chance)" }, { - "name": "[C]Platinum Shield II\n→[C]Platinum Shield III", + "type": "C", + "name": "Platinum Shield II\n→Platinum Shield III", "cpCost": 50, "pbu": "N/A", "aoe": "Area - Circle (L+)", "effects": "Perfect Guard, 2 Turns HP 20% Recovery\nRank 3 increases HP Recovery to 30% [Obtained from Door of Trials]" }, { - "name": "[C]Holy Sword Elvars ", + "type": "C", + "name": "Holy Sword Elvars ", "cpCost": 40, "pbu": "A/D/SS", "aoe": "Area - Circle (M)", "effects": "3 Turns Sword Flash, STR+ATS Up (S) [Obtained at level 107]" }, { - "name": "[S]Aeolus Saber II\n→[S]Aeolus Saber III", + "type": "S", + "name": "Aeolus Saber II\n→Aeolus Saber III", "cpCost": 100, "pbu": "4S/D\n4S+/C", "aoe": "Area - Circle (LL+)", @@ -706,49 +801,56 @@ ], "KURT": [ { - "name": "[C]Rain Slash II\n→[C]Rain Slash III", + "type": "C", + "name": "Rain Slash II\n→Rain Slash III", "cpCost": 30, "pbu": "B+/S/C+\nA/S/C+", "aoe": "Area - Circle (S+)", "effects": "Delay+3\nRank 3 increases Delay to 5 [Obtained at level 111]" }, { - "name": "[C]True Twilit Blade\n→[C]Zenith Twilit Blade", + "type": "C", + "name": "True Twilit Blade\n→Zenith Twilit Blade", "cpCost": 40, "pbu": "Dx2/D/D\nD+x2/D/D", "aoe": "Area - Line (S)", "effects": "Impede (100% chance), Blind (100% chance)\nIncreases Blind chance to 120% [Obtained at level 175]" }, { - "name": "[C]Blade Dance", + "type": "C", + "name": "Blade Dance", "cpCost": 30, "pbu": "N/A", "aoe": "Self", "effects": "3 Turns Sword Flash, STR+SPD Up (M) [Obtained in a Story event on 3/15 (Rean Route Ch1)]" }, { - "name": "[C]Tempest Edge II", + "type": "C", + "name": "Tempest Edge II", "cpCost": 60, "pbu": "S/C/A", "aoe": "Area - Circle (M)", "effects": "Seal+Mute (100% chance)" }, { - "name": "[C]Karmic Sword Dance\n→[C]True Karmic Sword Dance", + "type": "C", + "name": "Karmic Sword Dance\n→True Karmic Sword Dance", "cpCost": 90, "pbu": "S+/A/B\nSS/A/B+", "aoe": "Single", "effects": "Critical+30%\nIncreases Critical chance to 35% [Obtained at level 133]" }, { - "name": "[S]Ragna Strike\n→[S]Ragna Strike II", + "type": "S", + "name": "Ragna Strike\n→Ragna Strike II", "cpCost": 100, "pbu": "SS+/D\n4S+/D", "aoe": "Area - Circle (LL)", "effects": "Seal (50% chance)\nRank 2 increases Seal chance to 100% [Obtained at level 101]" }, { - "name": "[S]Gemini Judgement\n→[S]True Gemini Judgement", + "type": "S", + "name": "Gemini Judgement\n→True Gemini Judgement", "cpCost": 100, "pbu": "SSS+/D\n4S+/D", "aoe": "Area - Circle (L)", @@ -757,35 +859,40 @@ ], "LAPIS": [ { - "name": "[C]Emerode Eye", + "type": "C", + "name": "Emerode Eye", "cpCost": 20, "pbu": "N/A", "aoe": "Single Enemy", "effects": "Analyze, 4 Turn Balance Down 100%, 4 Turns DEF+ADF+MOV Down (S)" }, { - "name": "[C]Adamantine Ripper\n→[C]Adamantine Ripper II", + "type": "C", + "name": "Adamantine Ripper\n→Adamantine Ripper II", "cpCost": 50, "pbu": "A+/A/D\nS/A+/D+", "aoe": "Area - Line (M)", "effects": "4 Turns STR+ATS Down (S)\nObtained from Door of Trials" }, { - "name": "[C]Edel Hearts\n→[C]Edel Hearts II", + "type": "C", + "name": "Edel Hearts\n→Edel Hearts II", "cpCost": "200 EP", "pbu": "N/A", "aoe": "Self", "effects": "4 Turns STR/ATS/DEF Up (S), HP 30% Recovery, CP+30 [Obtained at level 106]\nRank 2 increases buffs to (M), 40% HP, 40 CP. [Obtained at level 119] This craft requires casting." }, { - "name": "[C]Grimoire Ark", + "type": "C", + "name": "Grimoire Ark", "cpCost": 50, "pbu": "A/D/A", "aoe": "Area - Circle (M+)", "effects": "Faint+Confuse+Nightmare (20% chance) [Obtained at level 112]" }, { - "name": "[S]Lapis In The Mirror\n→[S]Lapis In The Mirror II", + "type": "S", + "name": "Lapis In The Mirror\n→Lapis In The Mirror II", "cpCost": 100, "pbu": "4S/C\n4S+/C", "aoe": "All", @@ -794,35 +901,40 @@ ], "LAURA": [ { - "name": "[C]True Azure Fissure\n→[C]Zenith Azure Fissure", + "type": "C", + "name": "True Azure Fissure\n→Zenith Azure Fissure", "cpCost": 40, "pbu": "B+/D/S\nA/D/S+", "aoe": "Area - Line (M+)", "effects": "4 Turns SPD+MOV Down (M)\nIncreases debuffs to (L) [Obtained at level 120]" }, { - "name": "[C]True Radiant Spin\n→[C]Zenith Radiant Spin", + "type": "C", + "name": "True Radiant Spin\n→Zenith Radiant Spin", "cpCost": 80, "pbu": "A+/B+/C\nS/A/C", "aoe": "Area - Circle (L)", "effects": "Pulls enemies in, Faint (50% chance)\nIncreases Faint chance to 80% [Obtained at level 145]" }, { - "name": "[C]True Lion Rush", + "type": "C", + "name": "True Lion Rush", "cpCost": 60, "pbu": "S+/S+/D", "aoe": "Area - Circle (S)", "effects": "4 Turns STR+DEF Down (M)" }, { - "name": "[C]True Radiant Wings", + "type": "C", + "name": "True Radiant Wings", "cpCost": 30, "pbu": "N/A", "aoe": "Self", "effects": "3 Turns Sword Flash, 4 Turns STR Up (L), HP Recovery+10%" }, { - "name": "[S]True Radiant Phoenix Blade\n→[S]Zenith Radiant Phoenix Blade", + "type": "S", + "name": "True Radiant Phoenix Blade\n→Zenith Radiant Phoenix Blade", "cpCost": 100, "pbu": "4S/D\n5S/D", "aoe": "All", @@ -831,28 +943,32 @@ ], "LECHTER": [ { - "name": "[C]Laevatein\n→[C]Laevatein II", + "type": "C", + "name": "Laevatein\n→Laevatein II", "cpCost": 40, "pbu": "A/B/A\nA+/B/A+", "aoe": "Area - Circle (M)", "effects": "Burn+Nightmare (40% chance)\nRank 2 increases power and Burn+Nightmare to 60%. [Obtained at level 108]" }, { - "name": "[C]Spell Card", + "type": "C", + "name": "Spell Card", "cpCost": 20, "pbu": "N/A", "aoe": "All (Enemies+Allies)", "effects": "Random effect (negative or beneficial) on enemy or ally" }, { - "name": "[C]Heat Up", + "type": "C", + "name": "Heat Up", "cpCost": 10, "pbu": "N/A", "aoe": "Self", "effects": "3 Turns STR+ATS Up (M), CP+40" }, { - "name": "[S]Knights of Rubrum \n→[S]Knights of Rubrum II", + "type": "S", + "name": "Knights of Rubrum \n→Knights of Rubrum II", "cpCost": 100, "pbu": "4S/D\n4S+/D", "aoe": "All", @@ -861,35 +977,40 @@ ], "LLOYD": [ { - "name": "[C]Brave Smash\n →{C}Brave Smash II\n →→{C}Brave Smash III", + "type": "C", + "name": "Brave Smash\n →{C}Brave Smash II\n →→{C}Brave Smash III", "cpCost": 30, "pbu": "C/D/B\nC+/D/B\nB/D/B", "aoe": "Area - Line (S+)", "effects": "Seal+Faint (30% chance)\nRank 2 increases power and Seal+Faint chance to 40%. [Obtained at level 100]\nRank 3 increases power and Seal+Faint chance to 50%. [Obtained at level 175]" }, { - "name": "[C]Burning Heart\n →{C}Burning Heart II\n →→{C}Burning Heart III", + "type": "C", + "name": "Burning Heart\n →{C}Burning Heart II\n →→{C}Burning Heart III", "cpCost": 40, "pbu": "N/A", "aoe": "Self", "effects": "Cures all Statuses+Stat Down, 4 Turns STR/DEF/SPD Up (M), BP+1\nRank 2 adds 2 turns HP 15% recovery\nRank 3 adds 3 turns HP 15% recovery" }, { - "name": "[C]Zero Breaker\n →[C]Zero breaker χ", + "type": "C", + "name": "Zero Breaker\n →Zero breaker χ", "cpCost": 60, "pbu": "A/S/D\nA+/S/D", "aoe": "Area - Circle (M)", "effects": "Pulls enemies in, 4 Turns DEF/ADF Down (M)\nRank 2 increases DEF/ADF Down to (L). [Obtained at level 120]" }, { - "name": "[C]Tiger Charge", + "type": "C", + "name": "Tiger Charge", "cpCost": 80, "pbu": "S+/D/A", "aoe": "Single Target", "effects": "Impede (100% chance), 1 Turn Balance Down 100%. [Obtained at level 108]" }, { - "name": "[S]Rising Sun\n→[S]Rising Nova", + "type": "S", + "name": "Rising Sun\n→Rising Nova", "cpCost": 100, "pbu": "4S/B\n4S+/A", "aoe": "Area - Circle (LL)", @@ -898,28 +1019,32 @@ ], "MACHIAS": [ { - "name": "[C]Dread Breaker\n→[C]Dread Breaker II", + "type": "C", + "name": "Dread Breaker\n→Dread Breaker II", "cpCost": 30, "pbu": "A+/SS/D\nS/SS/D", "aoe": "Area - Line (S+)", "effects": "Impede (100% chance), 4 Turns DEF Down (L)\nRank 2 Increases power. [Obtained at level 130]" }, { - "name": "[C]Petrification Shell II\n→[C]Petrification Shell III", + "type": "C", + "name": "Petrification Shell II\n→Petrification Shell III", "cpCost": 60, "pbu": "B/C", "aoe": "Area - Line (L)", "effects": "Petrify (60% chance), 1 Turn Balance Down (100%)\nRank 2 Increases power. Petrify Chance increased to 80% [Obtained at level 140]" }, { - "name": "[C]Burst Drive II", + "type": "C", + "name": "Burst Drive II", "cpCost": 60, "pbu": "N/A", "aoe": "Area - Circle (M)", "effects": "Acceleration, EP+20%" }, { - "name": "[S]Justice Bullet II\n→[S]Justice Bullet III", + "type": "S", + "name": "Justice Bullet II\n→Justice Bullet III", "cpCost": 100, "pbu": "SSS+/C\n4S/C", "aoe": "Area - Circle (LL+)", @@ -928,35 +1053,40 @@ ], "MILLIUM": [ { - "name": "[C]Artum Barrier\n→[C]Artum Barrier EX ", + "type": "C", + "name": "Artum Barrier\n→Artum Barrier EX ", "cpCost": 50, "pbu": "N/A", "aoe": "Self", "effects": "1 Physical Guard\nAdds 1 extra Physical Guard [Obtained at level 105]" }, { - "name": "[C]Valiant Cannon\n→[C]Valiant Cannon II", + "type": "C", + "name": "Valiant Cannon\n→Valiant Cannon II", "cpCost": 30, "pbu": "B/D/D\nB+/D/B+", "aoe": "Area - Line (M+)", "effects": "4 Turns STR+DEF Down (S)\nRank 2 increases debuffs to (M) [Obtained at level 126]" }, { - "name": "[C]Megaton Press", + "type": "C", + "name": "Megaton Press", "cpCost": 60, "pbu": "S/SS/D", "aoe": "Area - Circle (M+)", "effects": "Delay+4, 4 Turns MOV Down (M)" }, { - "name": "[C]Caladbolg M", + "type": "C", + "name": "Caladbolg M", "cpCost": 80, "pbu": "A/D/S", "aoe": "Area - Circle (L)", "effects": "Faint (60% chance)" }, { - "name": "[S]Terra Breaker\n→[S]Terra Breaker Ω ", + "type": "S", + "name": "Terra Breaker\n→Terra Breaker Ω ", "cpCost": 100, "pbu": "4S/C\n4S+/B", "aoe": "All", @@ -965,49 +1095,56 @@ ], "MUSSE": [ { - "name": "[C]Oiseau Bleu II\n→[C]Oiseau Azur", + "type": "C", + "name": "Oiseau Bleu II\n→Oiseau Azur", "cpCost": 30, "pbu": "C+/C/D\nB/A/D", "aoe": "Area - Line (S+)", "effects": "Freeze+Petrify (20% chance)\nIncreases Freeze+Petrify chance to 30% [Obtained from Door of Trials]" }, { - "name": "[C]Saphir Rain\n→[C] Saphir Rain II", + "type": "C", + "name": "Saphir Rain\n→ Saphir Rain II", "cpCost": 40, "pbu": "N/A", "aoe": "Area - Circle (M+)", "effects": "Cures all Statuses+Stat Down+K.O., HP 25% Recovery\nRank 2 increases HP Recovery to 30% [Obtained at level 121 " }, { - "name": "[C]Cutie Bullet EX", + "type": "C", + "name": "Cutie Bullet EX", "cpCost": 40, "pbu": "A/C/S", "aoe": "Single Enemy", "effects": "Confuse (30% chance), Charm (90% chance) [Obtained at level 110]" }, { - "name": "[C]Moulin Rouge II", + "type": "C", + "name": "Moulin Rouge II", "cpCost": 80, "pbu": "S/D/C+", "aoe": "Area - Circle (L+)", "effects": "Burn (100% chance)" }, { - "name": "[C]Pentawa Shot", + "type": "C", + "name": "Pentawa Shot", "cpCost": 60, "pbu": "B+/D/D", "aoe": "Area - Circle (LL)", "effects": "Pulls enemies in, Mute (120% chance)" }, { - "name": "[S]Brilliant Shot\n→[S]Brilliant Shot II", + "type": "S", + "name": "Brilliant Shot\n→Brilliant Shot II", "cpCost": 100, "pbu": "SS+/D\n4S/D", "aoe": "Area - Circle (LL)\nArea - Circle (LL+)", "effects": "Random Status (100% chance)\nObtained at level 102" }, { - "name": "[S]Galaxia Volley\n→[S]Galaxia Volley II", + "type": "S", + "name": "Galaxia Volley\n→Galaxia Volley II", "cpCost": 100, "pbu": "SSS+/D\n4S+/D", "aoe": "Area - Line (M+)", @@ -1016,28 +1153,32 @@ ], "NADIA": [ { - "name": "[C]Nemesis Pierce\n→[C]Nemesis Pierce II", + "type": "C", + "name": "Nemesis Pierce\n→Nemesis Pierce II", "cpCost": 30, "pbu": "C/D/B\nB/D/A", "aoe": "Area - Line (S)", "effects": "Impede (100% chance), Nightmare+Burn (80% chance)\nRank 2 increases chance of Nightmare or Burn to 100% [Obtained at level 112]" }, { - "name": "[C]Wellness Injection\n→[C]Wellness Injection II", + "type": "C", + "name": "Wellness Injection\n→Wellness Injection II", "cpCost": 40, "pbu": "N/A", "aoe": "Area - Circle (M)", "effects": "Cures all statuses+Stat Down+K.O, HP 30% Recovery\nRank 2 increases HP Recovery to 35% [Obtained at level 132]" }, { - "name": "[C]Teddy Thread", + "type": "C", + "name": "Teddy Thread", "cpCost": 80, "pbu": "S/A/D", "aoe": "Area - Circle (L)", "effects": "2 Turns \"Weak\" (Enemy receives more damage from Arts) Deathblow (30% chance) [Obtained at level 107]" }, { - "name": "[S]Na's Special\n→[S]Na's Super Special", + "type": "S", + "name": "Na's Special\n→Na's Super Special", "cpCost": 100, "pbu": "SSS+/D", "aoe": "All", @@ -1046,28 +1187,32 @@ ], "NOEL": [ { - "name": "[C]Electromagnetic Net\n→[C]Electromagnetic Net II", + "type": "C", + "name": "Electromagnetic Net\n→Electromagnetic Net II", "cpCost": 30, "pbu": "D/D/C\nD+/D/C+", "aoe": "Area - Circle (M)", "effects": "Impede (100% chance), 4 Turns MOV Down (M) \nRank 2 increases power and adds 40% Seal. Also increases MOV Down to (L)" }, { - "name": "[C]Smart Missile\n→[C]Smart Missile II", + "type": "C", + "name": "Smart Missile\n→Smart Missile II", "cpCost": 60, "pbu": "A/A/D\nA+/A+/D", "aoe": "Area - Circle (M+)", "effects": "Random status ailment infliction (80% chance), 1 Turn Balance Down 50%\nRank 2 Increases power and Status ailment infliction to 100% and 1 turn Balance down 100%" }, { - "name": "[C]Rebellion Shot", + "type": "C", + "name": "Rebellion Shot", "cpCost": 80, "pbu": "S/C/C", "aoe": "Area - Circle (M)", "effects": "4 Turns Str/Def Down. Obtained at level 119" }, { - "name": "[S]Wild Stampede\n→[S]Wild Stampede", + "type": "S", + "name": "Wild Stampede\n→Wild Stampede", "cpCost": 100, "pbu": "4S/D\n4S+/D", "aoe": "All", @@ -1076,34 +1221,39 @@ ], "RANDY": [ { - "name": "[C]Deadly Storm\n→[C]Deadly Storm II", + "type": "C", + "name": "Deadly Storm\n→Deadly Storm II", "cpCost": 40, "pbu": "B/A/D+\nB+/A/D+", "aoe": "Area - Line (M) ", "effects": "Deathblow (20% chance)\nRank 2 Increases Power and Deathblow (30%) Chance. [Obtained at level 135]" }, { - "name": "[C]Crimson Gale\n→[C]Crimson Gale II", + "type": "C", + "name": "Crimson Gale\n→Crimson Gale II", "cpCost": 60, "pbu": "A+/C/B\nS/C/B", "aoe": "Area - Circle (L)\nRank 2 Increases to (L+)", "effects": "Burn (60% chance)\nRank 2 Increases Power and Burn (80%) Chance. [Obtained at level 176]" }, { - "name": "[C]War Cry\n→[C]War Cry II", + "type": "C", + "name": "War Cry\n→War Cry II", "cpCost": 0, "pbu": "N/A", "aoe": "Self", "effects": "HP-30%, CP+80\nRank 2 Increases CP Gain to 100. [Obtained at level 139]" }, { - "name": "[C]Carnage Raid", + "type": "C", + "name": "Carnage Raid", "pbu": "S+/C/B", "aoe": "Area - Circle (S)", "effects": "30% Increased Base Crit Chance, 4 Turns Random Stat Down (L), [Obtained at level 127]" }, { - "name": "[S]Berserker\n→[S]True Berserker", + "type": "S", + "name": "Berserker\n→True Berserker", "cpCost": 100, "pbu": "4S+/C\n5S+/C", "aoe": "All", @@ -1112,42 +1262,48 @@ ], "REAN": [ { - "name": "[C]True Crimson Slash\n→[C]Ardent Crimson Slash\n→→[C]Zenith Crimson Slash", + "type": "C", + "name": "True Crimson Slash\n→Ardent Crimson Slash\n→→Zenith Crimson Slash", "cpCost": 20, "pbu": "D+/D/D\nC/D/D\nC+/D/D", "aoe": "Area - Line (M)\nArea - Line (M+) (All Upgrades)", "effects": "Impede (100% chance), Burn (30% chance)\nIncreases Burn chance to 40% [Obtained at level 103]\nIncreases Burn chance to 60% [Used while in SU after unlocking Ardent]" }, { - "name": "[C]Moonless Blade\n→[C]Ardent Moonless Blade\n→→[C]Zenith Moonless Blade", + "type": "C", + "name": "Moonless Blade\n→Ardent Moonless Blade\n→→Zenith Moonless Blade", "cpCost": 40, "pbu": "B/B/A\nB+/B/A\nA/B+/A+", "aoe": "Area - Circle (M)", "effects": "4 Turns DEF Down (S)\nObtained at level 112\nIncreases debuff to (L) [Used while in SU after unlocking Ardent]" }, { - "name": "[C]True Helix\n→[C]Ardent Helix", + "type": "C", + "name": "True Helix\n→Ardent Helix", "cpCost": 60, "pbu": "S/A+/C\nS+/A+/C", "aoe": "Area - Circle (S)", "effects": "Critical 25%\nCritical 30%. This version is used while in SU." }, { - "name": "[C]Spirit Unification\n→[C]Clear Mind Spirit Unification", + "type": "C", + "name": "Spirit Unification\n→Clear Mind Spirit Unification", "cpCost": 100, "pbu": "N/A", "aoe": "Self", "effects": "3 Turns STR+DEF+SPD Up (L)\nClear Mind increases buffs by 1 Turn [Obtained in Post-Game after saving Clear Data.]" }, { - "name": "[S]Seventh Slash: Shredded Leaves\n→[S]Flashing Slash: Shredded Leaves\n→→[S]Termination Slash: Heavenly Leaves", + "type": "S", + "name": "Seventh Slash: Shredded Leaves\n→Flashing Slash: Shredded Leaves\n→→Termination Slash: Heavenly Leaves", "cpCost": 100, "pbu": "4S/C\n4S+/B", "aoe": "All", "effects": "4 Turns SPD Down (L) [Learned at level 105] \nIncreases debuff by 1 turn [Used while in SU]\nIncreases debuff by 1 turn [Used while in Clear Mind SU] " }, { - "name": "[S]Fathomless Blade\n→[S]True Fathomless Blade\n→→[S]Peerless Fathomless Blade", + "type": "S", + "name": "Fathomless Blade\n→True Fathomless Blade\n→→Peerless Fathomless Blade", "cpCost": 100, "pbu": "4S/D\n4S+/C\n5S+/B", "aoe": "All", @@ -1156,28 +1312,32 @@ ], "RENNE": [ { - "name": "[C]Calamity Throw\n→[C]Calamity Throw II", + "type": "C", + "name": "Calamity Throw\n→Calamity Throw II", "cpCost": 20, "pbu": "C+/A/D+\nB/A+/D+", "aoe": "Area - Line (M)", "effects": "Deathblow (40% chance)\nRank 2 increases Deathblow chance to 60% [Obtained at level 112]" }, { - "name": "[C]Rennede", + "type": "C", + "name": "Rennede", "cpCost": 80, "pbu": "S/D/A", "aoe": "Area - Line (M+)", "effects": "Deathblow+Nightmare (20% chance)" }, { - "name": "[C]Zodiac Code", + "type": "C", + "name": "Zodiac Code", "cpCost": 50, "pbu": "N/A", "aoe": "Self", "effects": "4 Turns ATS+ADF+SPD Up (M), EP 20% Recovery, BP+1" }, { - "name": "[S]Nemesis Party\n→[S]Nemesis Party II", + "type": "S", + "name": "Nemesis Party\n→Nemesis Party II", "cpCost": 100, "pbu": "4S/D\n4S+/D", "aoe": "All", @@ -1186,28 +1346,32 @@ ], "RIXIA": [ { - "name": "[C]Dragon Claw Slash\n→[C]True Dragon Claw Slash", + "type": "C", + "name": "Dragon Claw Slash\n→True Dragon Claw Slash", "cpCost": 40, "pbu": "Ex2/D/B\nDx2/D/B", "aoe": "Area - Circle (L) ", "effects": "Pulls enemies in, Impede (100% chance), Delay+6\nRank 2 increases power and Delay to +8. Obtained at level 106." }, { - "name": "[C]Bright Moon Ring", + "type": "C", + "name": "Bright Moon Ring", "cpCost": 60, "pbu": "S/S/D", "aoe": "Area - Line (M) ", "effects": "Mute+Faint+Deathblow (20% chance)" }, { - "name": "[C]Moonlight Butterfly\n→[C]True Moonlight Butterfly", + "type": "C", + "name": "Moonlight Butterfly\n→True Moonlight Butterfly", "cpCost": 40, "pbu": "N/A", "aoe": "Self", "effects": "2 Turns Stealth. 4 Turns STR+SPD Up (M)\nRank 2 Increases STR+SPD Up to (L). Obtained at level 138." }, { - "name": "[S]Paraselene Dance", + "type": "S", + "name": "Paraselene Dance", "cpCost": 100, "pbu": "4S+/D", "aoe": "All", @@ -1216,28 +1380,32 @@ ], "SARA": [ { - "name": "[C]Thundering Roar EX", + "type": "C", + "name": "Thundering Roar EX", "cpCost": 30, "pbu": "C/D/D", "aoe": "Area - Circle (L)", "effects": "Seal (60% chance), 4 Turns SPD Down (L)" }, { - "name": "[C]True Flash\n→[C]Flash EX", + "type": "C", + "name": "True Flash\n→Flash EX", "cpCost": 60, "pbu": "S/SS/D\nS+/SS/D", "aoe": "Area - Circle (M)", "effects": "Delay+4, Burn (30% chance)\nIncreases Delay to 6, Burn chance to 60% [Obtained at level 127]" }, { - "name": "[C]Lightning Charge EX", + "type": "C", + "name": "Lightning Charge EX", "cpCost": 40, "pbu": "N/A", "aoe": "Self", "effects": "3 Turns Insight, 4 Turns STR+SPD Up (L)" }, { - "name": "[S]Northern Lightning II\n→[S]Northern Lightning III", + "type": "S", + "name": "Northern Lightning II\n→Northern Lightning III", "cpCost": 100, "pbu": "4S/D", "aoe": "All", @@ -1246,28 +1414,32 @@ ], "SHARON": [ { - "name": "[C]Binding Chains", + "type": "C", + "name": "Binding Chains", "cpCost": 40, "pbu": "Dx2/D/D", "aoe": "Area - Circle (L)", "effects": "Delay+4, Seal (60%)" }, { - "name": "[C]Shadow Stitch\n→[C]Shadow Stitch II", + "type": "C", + "name": "Shadow Stitch\n→Shadow Stitch II", "cpCost": 80, "pbu": "Dx2/A/C\nCx2/A/C", "aoe": "Area - Circle (L)", "effects": "4 Turns SPD/MOV Down (M)\nRank 2 Increases SPD/MOV Down to (L) [Obtained at level 126]" }, { - "name": "[C]Death Butterfly", + "type": "C", + "name": "Death Butterfly", "cpCost": 60, "pbu": "C/B", "aoe": "Area - Circle (S)", "effects": "Death (40%), Nightmare (40%) All stats Down 3 turns (L)" }, { - "name": "[S] Death's Embrace\n→[S]True Death's Embrace", + "type": "S", + "name": " Death's Embrace\n→True Death's Embrace", "cpCost": 100, "pbu": "4S/D\n4S+/D", "aoe": "All", @@ -1276,28 +1448,32 @@ ], "SWIN": [ { - "name": "[C]Carving Blade\n→[C]Carving Blade EX", + "type": "C", + "name": "Carving Blade\n→Carving Blade EX", "cpCost": 20, "pbu": "D+/D/D\nC/D/D", "aoe": "Area - Circle (S+)", "effects": "3 Turns [Marking - 100% damage next hit]\nRank 2 increases Marking by 1 turn [Obtained at level 114] " }, { - "name": "[C]Revelation\n→[C]Revelation EX", + "type": "C", + "name": "Revelation\n→Revelation EX", "cpCost": 60, "pbu": "S/A/D\nS+/A/D", "aoe": "Single Enemy", "effects": "3 Turns [Marking - 60% damage next hit] Seal (40% chance)\nRank 2 increases Marking by 1 turn, Seal chance to 60% [Obtained at level 134]" }, { - "name": "[C]Quick Zone", + "type": "C", + "name": "Quick Zone", "cpCost": 30, "pbu": "N/A", "aoe": "Self", "effects": "4 Turns STR+SPD Up (S), CP+20 [Obtained at level 107]" }, { - "name": "[S]Three of Swords\n→[S]Three of Swords Ace", + "type": "S", + "name": "Three of Swords\n→Three of Swords Ace", "cpCost": 100, "pbu": "4S/B\n4S+/B+", "aoe": "Area - Circle (LL)", @@ -1306,42 +1482,48 @@ ], "TIO": [ { - "name": "[C]Analyzer", + "type": "C", + "name": "Analyzer", "cpCost": 20, "pbu": "N/A", "aoe": "Single Enemy", "effects": "Analyzes the target." }, { - "name": "[C]Beam Zanber", + "type": "C", + "name": "Beam Zanber", "cpCost": 30, "pbu": "C+/D/B", "aoe": "Area - Circle (M) ", "effects": "Impede (100% chance)" }, { - "name": "[C]Absolute Zero", + "type": "C", + "name": "Absolute Zero", "cpCost": 80, "pbu": "S/S/D", "aoe": "Area - Circle (M) ", "effects": "Freeze (80% chance)" }, { - "name": "[C]Energy Circle\n→[C]Energy Circle II", + "type": "C", + "name": "Energy Circle\n→Energy Circle II", "cpCost": 60, "pbu": "N/A", "aoe": "Area - Circle (LL)", "effects": "30% HP Recovery, 3 turns 20% HP Recovery, Cure all status abnormalities. [Obtained at level 112].\nRank 2 Increases Initial HP recovery to 35%. [Obtained at level 134]." }, { - "name": "[C] Call Zeit", + "type": "C", + "name": " Call Zeit", "cpCost": "EP 300", "pbu": "S/C/C", "aoe": "Area - Circle (L)", "effects": "Delay +8, All Cancel" }, { - "name": "[S]Ether Strike\n→[S] Ether Debuster", + "type": "S", + "name": "Ether Strike\n→ Ether Debuster", "cpCost": 100, "pbu": "4S/D\n4S+/C", "aoe": "All", @@ -1350,35 +1532,40 @@ ], "TITA": [ { - "name": "[C]Hard Straight II", + "type": "C", + "name": "Hard Straight II", "cpCost": 30, "pbu": "A/B/D", "aoe": "Area - Circle (L)", "effects": "N/A" }, { - "name": "[C]Chaff Grenade\n→[C]Chaff Grenade II", + "type": "C", + "name": "Chaff Grenade\n→Chaff Grenade II", "cpCost": 40, "pbu": "C+/D/D\nB/D/D", "aoe": "Area - Circle (LL)", "effects": "4 turns stat down (L)\nRank 2 Increases power. [Obtained at level 112]" }, { - "name": "[C]Heavy Accel", + "type": "C", + "name": "Heavy Accel", "cpCost": 90, "pbu": "S+/S+/A", "aoe": "Area - Line (L)", "effects": "Delay +4, Faint (50%). Impede (100%)" }, { - "name": "[C]Vital Cannon", + "type": "C", + "name": "Vital Cannon", "cpCost": 60, "pbu": "N/A", "aoe": "Area - Circle (L)", "effects": "HP 60%/CP+30, All status abnormalities cured." }, { - "name": "[S]Omega Impulse\n→[S]Omega Impulse II", + "type": "S", + "name": "Omega Impulse\n→Omega Impulse II", "cpCost": 100, "pbu": "4S+/D\n5S/D", "aoe": "Area - Line (XL)", @@ -1387,28 +1574,32 @@ ], "TOWA": [ { - "name": "[C]Detector", + "type": "C", + "name": "Detector", "cpCost": 20, "pbu": "N/A", "aoe": "Single", "effects": "Analyze, 4 Turns ATS/ADF Down (L)" }, { - "name": "[C]Meteor Attack\n→[C]True Meteor Attack ", + "type": "C", + "name": "Meteor Attack\n→True Meteor Attack ", "cpCost": 60, "pbu": "A+/D/C+\nS/D/B", "aoe": "Area - Line (M)", "effects": "Seal (100%)\nRank 2 Increases Seal to 120%. [Obtained at level 124]" }, { - "name": "[C]Energy Rain", + "type": "C", + "name": "Energy Rain", "cpCost": 50, "pbu": "N/A", "aoe": "Area - Circle (L+)", "effects": "Recovery / HP / EP 25%" }, { - "name": "[S]Rainbow Shot\n→[S]Rainbow Shot II", + "type": "S", + "name": "Rainbow Shot\n→Rainbow Shot II", "cpCost": 100, "pbu": "4S/D\n4S+/D", "aoe": "All", @@ -1417,27 +1608,31 @@ ], "WAZY": [ { - "name": "[C]Phantom Rush\n→[C]Phantom Rush II", + "type": "C", + "name": "Phantom Rush\n→Phantom Rush II", "cpCost": 30, "pbu": "B/D/S\nB+/D/S", "aoe": "Area - Circle (S+)", "effects": "Confuse (30% chance), Delay+4 \nRank 2 Increases Confuse to 50% and Delay to +6. Obtained at level 137" }, { - "name": "[C]Seventh Shot\n→[C]Seventh Shot II", + "type": "C", + "name": "Seventh Shot\n→Seventh Shot II", "cpCost": 60, "pbu": "B/D/D\nB+/D/D", "aoe": "Area - Circle (L)", "effects": "Restores HP + CP Proportionate to damage dealt\nRank 2 Increases power. Obtained through Door of Trials." }, { - "name": "[C]Deadly Heaven", + "type": "C", + "name": "Deadly Heaven", "cpCost": 80, "pbu": "S+/S/D", "effects": "35% Increased Base Crit Chance, Nightmare (40%) Obtained at level 111." }, { - "name": "[S]Akashic Arm\n→[S]Akashic Arm", + "type": "S", + "name": "Akashic Arm\n→Akashic Arm", "cpCost": 100, "pbu": "5S/C\n5S+/B", "aoe": "Area - Circle (L+) ", @@ -1446,28 +1641,32 @@ ], "ALFIN": [ { - "name": "[C]Detector γ", + "type": "C", + "name": "Detector γ", "cpCost": 30, "pbu": "N/A", "aoe": "Single Enemy", "effects": "2 Turns Weak, 4 Turns SPD Down (L), Delay+6" }, { - "name": "[C]Purity Ray\n→[C]]Purity Ray II", + "type": "C", + "name": "Purity Ray\n→]Purity Ray II", "cpCost": 40, "pbu": "D\nC", "aoe": "Area - Circle (L)", "effects": "Blind (60% chance)\nRank 2 increases Blind chance to 80% [Obtained at level 112]" }, { - "name": "[C]Princess Air", + "type": "C", + "name": "Princess Air", "cpCost": 60, "pbu": "N/A", "aoe": "Area - Circle (LL+)", "effects": "AOE spreads out from Alfin. 4 Turns SPD Up (M), CP+40" }, { - "name": "[S]Sacred Circle\n→[S]Sacred Circle", + "type": "S", + "name": "Sacred Circle\n→Sacred Circle", "cpCost": 100, "pbu": "N/A", "aoe": "All Allies", @@ -1476,28 +1675,32 @@ ], "ANGELICA": [ { - "name": "[C]Razor Bullet\n→[C]Razor Bullet II", + "type": "C", + "name": "Razor Bullet\n→Razor Bullet II", "cpCost": 30, "pbu": "B+/D/D\nA/D/D", "aoe": "Area - Line (S+)", "effects": "Impede (100% chance), Delay+2\nRank 2 increases Delay to 4 [Obtained at level 112]" }, { - "name": "[C]Zero Impact", + "type": "C", + "name": "Zero Impact", "cpCost": 60, "pbu": "SS/SS/S", "aoe": "Single Enemy", "effects": "Faint (50% chance)" }, { - "name": "[C]Dragon Boost", + "type": "C", + "name": "Dragon Boost", "cpCost": 30, "pbu": "N/A", "aoe": "Self", "effects": "4 Turns STR+DEF+SPD Up (M)" }, { - "name": "[S]Dragon Kick\n→[S]Dragon Kick II", + "type": "S", + "name": "Dragon Kick\n→Dragon Kick II", "cpCost": 100, "pbu": "4S/A\n4S+/A", "aoe": "Area - Circle (LL)", @@ -1506,21 +1709,24 @@ ], "AURELIA": [ { - "name": "[C]Dynast Sunder", + "type": "C", + "name": "Dynast Sunder", "cpCost": 40, "pbu": "A/D/A", "aoe": "Area - Line (L)", "effects": "4 Turns STR/ATS Down (L)" }, { - "name": "[C]Prismatic Tetra Blade\n→[C]Zenith Prismatic Tetra Blade", + "type": "C", + "name": "Prismatic Tetra Blade\n→Zenith Prismatic Tetra Blade", "cpCost": 80, "pbu": "S/SS/D\nS+/SS/D", "aoe": "Area - Circle (LL)", "effects": "Petrify+Freeze+Burn+Sleep (20% chance)\nIncreases chance to 40%" }, { - "name": "[S]Rakshasa Onslaught\n→[S] Shining Rakshasa Onslaught", + "type": "S", + "name": "Rakshasa Onslaught\n→ Shining Rakshasa Onslaught", "cpCost": 100, "pbu": "5S/D\n5S+/C", "aoe": "All", @@ -1529,28 +1735,32 @@ ], "GEORGE": [ { - "name": "[C]Detector Σ", + "type": "C", + "name": "Detector Σ", "cpCost": 20, "pbu": "N/A", "aoe": "Single Enemy", "effects": "4 Turns Balance Down 100%, 4 Turns All Stats Down (S), Delay+2" }, { - "name": "[C]Gram Cannon\n→[C]Gram Cannon II", + "type": "C", + "name": "Gram Cannon\n→Gram Cannon II", "cpCost": 40, "pbu": "B/D/B\nB+/D/B+", "aoe": "Area - Line (M+)", "effects": "Rank 2 adds 4 Turns MOV Down (M)" }, { - "name": "[C]Caladbolg", + "type": "C", + "name": "Caladbolg", "cpCost": 60, "pbu": "S+/S+/C", "aoe": "Area - Circle (M)", "effects": "Faint (50% chance)" }, { - "name": "[S]Dverg Hammer\n→[S]Dverg Hammer II", + "type": "S", + "name": "Dverg Hammer\n→Dverg Hammer II", "cpCost": 100, "pbu": "4S/C\n4S+/B", "aoe": "All", @@ -1559,28 +1769,32 @@ ], "OLIVIER": [ { - "name": "[C]Quickdraw", + "type": "C", + "name": "Quickdraw", "cpCost": 30, "pbu": "D+/D/D+", "aoe": "Area - Circle (L)", "effects": "Impede (100% chance), Delay+4" }, { - "name": "[C]Requiem Shot", + "type": "C", + "name": "Requiem Shot", "cpCost": 60, "pbu": "A+/S/D", "aoe": "Area - Line (S+)", "effects": "Nightmare+Confuse (80% chance)" }, { - "name": "[C]Happy Trigger\n→[C]Happy Trigger II", + "type": "C", + "name": "Happy Trigger\n→Happy Trigger II", "cpCost": 40, "pbu": "N/A", "aoe": "Area - Circle (LL)", "effects": "HP 60% Recovery \nRank 2 increases HP Recovery to 70%" }, { - "name": "[S]Akashic Star\n→[S]Akashic Star II", + "type": "S", + "name": "Akashic Star\n→Akashic Star II", "cpCost": 100, "pbu": "4S/D\n4S+/C", "aoe": "All", @@ -1589,21 +1803,24 @@ ], "ROSELIA": [ { - "name": "[C]Bloody Fang", + "type": "C", + "name": "Bloody Fang", "cpCost": 80, "pbu": "A/D/D", "aoe": "Area - Circle (M)", "effects": "Depending on damage, recovers allies HP and CP" }, { - "name": "[C]Crimson Lancer II", + "type": "C", + "name": "Crimson Lancer II", "cpCost": 40, "pbu": "B+/B+/B+", "aoe": "Area - Line (M+)", "effects": "Impede (100% chance), Delay+10" }, { - "name": "[S]Ultimate Magic: Red Moon\n→[S] Great Magic: Red Moon", + "type": "S", + "name": "Ultimate Magic: Red Moon\n→ Great Magic: Red Moon", "cpCost": 100, "pbu": "4S+/D\n5S/D", "aoe": "All", @@ -1612,28 +1829,32 @@ ], "TOVAL": [ { - "name": "[C]Double Strike", + "type": "C", + "name": "Double Strike", "cpCost": 20, "pbu": "C/D/B", "aoe": "Single Enemy", "effects": "Impede (100% chance), Seal (20% chance)" }, { - "name": "[C]Accel Hit II", + "type": "C", + "name": "Accel Hit II", "cpCost": 40, "pbu": "B+/B+/D", "aoe": "Single Enemy", "effects": "Faint (30% chance), 3 Turns Balance Down 100%" }, { - "name": "[C]Sphere Break", + "type": "C", + "name": "Sphere Break", "cpCost": 60, "pbu": "A/D/D", "aoe": "Area - Circle (M)", "effects": "Mute (100% chance), 4 Turns ADF Down (M)" }, { - "name": "[S]Rebellion Storm II", + "type": "S", + "name": "Rebellion Storm II", "cpCost": 100, "pbu": "4S+/D", "aoe": "All", @@ -1642,28 +1863,32 @@ ], "VICTOR": [ { - "name": "[C]True Radiant Cleaver", + "type": "C", + "name": "True Radiant Cleaver", "cpCost": 30, "pbu": "A/D/SS", "aoe": "Area - Line (S+)", "effects": "4 Turns SPD+MOV Down (L)" }, { - "name": "[C]True Radiant Wings", + "type": "C", + "name": "True Radiant Wings", "cpCost": 30, "pbu": "N/A", "aoe": "Self", "effects": "3 Turns Sword Flash, 4 Turns STR Up (L), HP 10% Recovery" }, { - "name": "[C]True Radiant Spin", + "type": "C", + "name": "True Radiant Spin", "cpCost": 60, "pbu": "A+/A/C", "aoe": "Area - Circle (L)", "effects": "Pulls enemies in, Faint (80% chance)" }, { - "name": "[S]Radiant Phoenix Slash", + "type": "S", + "name": "Radiant Phoenix Slash", "cpCost": 100, "pbu": "5S+/D", "aoe": "All", @@ -1672,28 +1897,32 @@ ], "VITA": [ { - "name": "[C]Dancing Blades", + "type": "C", + "name": "Dancing Blades", "cpCost": 40, "pbu": "C+/D/A", "aoe": "Area - Circle (M)", "effects": "Burn+Blind+Critical (25% chance)" }, { - "name": "[C]Frozen Prison", + "type": "C", + "name": "Frozen Prison", "cpCost": 60, "pbu": "B/A/D", "aoe": "Area - Circle (M)", "effects": "Freeze (100% chance)" }, { - "name": "[C]Song of Grianos", + "type": "C", + "name": "Song of Grianos", "cpCost": 80, "pbu": "S/D/D", "aoe": "All", "effects": "Seal+Mute (100% chance)" }, { - "name": "[S]Aria of the Abyss\n→[S]Azure Aria of the Abyss", + "type": "S", + "name": "Aria of the Abyss\n→Azure Aria of the Abyss", "cpCost": 100, "pbu": "4S+/D\n5S/D", "aoe": "All", @@ -1702,53 +1931,60 @@ ], "[SPOILERS, YOULL KNOW]": [ { - "name": "[C]xxxxx\n→[C]xxxxx II", + "type": "C", + "name": "xxxxx\n→xxxxx II", "cpCost": 40, "pbu": "B+/D/D\nA/D/D", "aoe": "Area - Circle (L)", "effects": "Burn (70% chance), All Cancel. Becomes Chaos Flame while transformed.\nRank 2 increases Burn chance to 80%. [Obtained at level 210]" }, { - "name": "[C]xxxxx\n→[C]xxxxx II", + "type": "C", + "name": "xxxxx\n→xxxxx II", "cpCost": 60, "pbu": "A+/A+/D\nS/S/D", "aoe": "Area - Line (M)", "effects": "Blaze (stronger Burn)+Deathblow (25% chance). Becomes Abyss Hounds while transformed.\nRank 2 increases chance to 30%. [Obtained at level 220]" }, { - "name": "[C]xxxxx\n→[C]xxxxx", + "type": "C", + "name": "xxxxx\n→xxxxx", "cpCost": 80, "pbu": "SS/D/S\nSSS/D/SS", "aoe": "Area - Circle (M)", "effects": "Burn+Faint+Nightmare (40% chance)\nIncreases chance to 60%. Used while transformed." }, { - "name": "[C]xxxxx", + "type": "C", + "name": "xxxxx", "cpCost": 200, "pbu": "N/A", "aoe": "N/A", "effects": "Demon Transformation. 6 Turns STR+ATS+SPD Up (L), HP 150% Recovery, CP+100" }, { - "name": "[C]xxxxx\n→[C]xxxxx", + "type": "C", + "name": "xxxxx\n→xxxxx", "cpCost": 40, "pbu": "A+/D/D\nS/D/D", "aoe": "Area - Circle (L)", "effects": "Burn (90% chance), All Cancel.\nRank 2 increases Burn chance to 100%." }, { - "name": "[C]xxxxx\n→[C]xxxxx", + "type": "C", + "name": "xxxxx\n→xxxxx", "cpCost": 60, "pbu": "S+/S+/D\nSS/SS/D", "aoe": "Area - Line (M)", "effects": "Blaze+Deathblow (35% chance)\nRank 2 increases chance to 40%." }, { - "name": "[S]xxxxx\n→[S]xxxxx\n→→[S]Ixxxxx", + "type": "S", + "name": "xxxxx\n→xxxxx\n→→Ixxxxx", "cpCost": 100, "pbu": "5S/B\n5S+/A\n6S/S", "aoe": "All", "effects": "Burn (60% chance), All Cancel.\nRank 2 increases Burn chance to 80%. [Obtained from Door of Trials]\nRank 3 increases Burn chance to 100%. Used while transformed." } ] -} +} \ No newline at end of file diff --git a/resources/doors.json b/resources/doors.json new file mode 100644 index 0000000..80220a7 --- /dev/null +++ b/resources/doors.json @@ -0,0 +1,92 @@ +[ + { + "door": 1, + "characters": "Lloyd, Kurt", + "lvl": 114 + }, + { + "door": 2, + "characters": "Tio, Emma, Altina, Lapis", + "lvl": 114 + }, + { + "door": 3, + "characters": "Elie, Juna", + "lvl": 121 + }, + { + "door": 4, + "characters": "Musse, Nadia", + "lvl": 123 + }, + { + "door": 5, + "characters": "Ash, Swin, Rixia, Renne", + "lvl": 123 + }, + { + "door": 6, + "characters": "Randy, Gaius", + "lvl": 133 + }, + { + "door": 7, + "characters": "Rean, Arios", + "lvl": 133 + }, + { + "door": 8, + "characters": "Alisa, Estelle, Noel, Celine", + "lvl": 133 + }, + { + "door": 9, + "characters": "Joshua, Duvalie", + "lvl": 150 + }, + { + "door": 10, + "characters": "Wazy, Jusis, Tita, Elise ", + "lvl": 150 + }, + { + "door": "EX1", + "characters": "Fie, Toval", + "lvl": 155 + }, + { + "door": "EX2", + "characters": "Laura, Agate, Roselia", + "lvl": 160 + }, + { + "door": "EX3", + "characters": "Elliot, Vita", + "lvl": 165 + }, + { + "door": "EX4", + "characters": "Crow, George, Towa, Angelica", + "lvl": 170 + }, + { + "door": "EX5", + "characters": "Olivier, Alfin, Machias", + "lvl": 175 + }, + { + "door": "EX6", + "characters": "Sara, Sharon, Aurelia, Victor", + "lvl": 180 + }, + { + "door": "EX7", + "characters": "Rufus, Lechter, Claire, Millium", + "lvl": 185 + }, + { + "door": "EX8", + "characters": "Spoilers, you'll know who", + "lvl": 190 + } +] \ No newline at end of file diff --git a/resources/items.json b/resources/items.json new file mode 100644 index 0000000..e1e8dc1 --- /dev/null +++ b/resources/items.json @@ -0,0 +1,411 @@ +{ + "STANDARD": [ + { + "japanese": "ティアの薬", + "english": "Tear Balm", + "effects": "Single: HP 5000 Recovery" + }, + { + "japanese": "ティアラの薬", + "english": "Teara Balm", + "effects": "Single: HP 10000 Recovery" + }, + { + "japanese": "ティアラルの薬", + "english": "Tearal Balm", + "effects": "Single: HP 15000 Recovery" + }, + { + "japanese": "ティア・オルの薬", + "english": "Tear-All Balm", + "effects": "Single: Full HP Recovery" + }, + { + "japanese": "EPチャージI", + "english": "EP Charge", + "effects": "Single: EP 250 Recovery" + }, + { + "japanese": "EPチャージII", + "english": "EP Charge II", + "effects": "Single: EP 500 Recovery" + }, + { + "japanese": "EPチャージIII", + "english": "EP Charge III", + "effects": "Single: EP 750 Recovery" + }, + { + "japanese": "EPチャージIV", + "english": "EP Charge IV", + "effects": "Single: EP full Recovery" + }, + { + "japanese": "セラスの薬", + "english": "Reviving Balm", + "effects": "Single: Revive K.O; HP 6000 Recovery" + }, + { + "japanese": "アセラスの薬", + "english": "Celestial Balm", + "effects": "Single: Revive K.O; HP 12000 Recovery" + }, + { + "japanese": "アセラスの薬・改", + "english": "Celestial Balm EX", + "effects": "Single: Revive K.O; HP 18000 Recovery" + }, + { + "japanese": "ゼラムパウダー", + "english": "Zeram Powder", + "effects": "Single: Revive K.O; HP Full Recovery; CP + 100" + }, + { + "japanese": "ゼラムカプセル", + "english": "Zeram Capsule", + "effects": "Single: Revive K.O; HP Full Recovery; CP + 200" + }, + { + "japanese": "ブレイブシード", + "english": "Brave Seed", + "effects": "All: Increase BP +3 " + }, + { + "japanese": "ブレイブソウル", + "english": "Brave Soul", + "effects": "All: Max BP" + }, + { + "japanese": "精霊香", + "english": "Spirit Incense", + "effects": "All: Revive K.O; HP 50% Recovery; EP 50% Recovery" + }, + { + "japanese": "龍神香", + "english": "Dragon Incense", + "effects": "All: Revive K.O; HP Full Recovery; EP Full Recovery" + }, + { + "japanese": "解毒薬", + "english": "Antidote", + "effects": "Single: Cure Poison" + }, + { + "japanese": "弛緩ジェル", + "english": "Relaxing Gel", + "effects": "Single: Cure Seal" + }, + { + "japanese": "絶縁テープ", + "english": "Insulating Tape", + "effects": "Single: Cure Mute" + }, + { + "japanese": "目薬", + "english": "Eye Drops", + "effects": "Single: Cure Blind" + }, + { + "japanese": "ミントドロップ", + "english": "Mint Drop", + "effects": "Single: Cure Sleep/Nightmare" + }, + { + "japanese": "冷却スプレー", + "english": "Cooling Spray", + "effects": "Single: Cure Burn" + }, + { + "japanese": "解凍カイロ", + "english": "Warmer", + "effects": "Single: Cure Freeze" + }, + { + "japanese": "軟化リキッド", + "english": "Softening Ointment", + "effects": "Single: Cure Petrify" + }, + { + "japanese": "気付け薬", + "english": "Stimulant", + "effects": "Single: Cure Faint" + }, + { + "japanese": "鎮静薬", + "english": "Sedative", + "effects": "Single: Cure Confusion" + }, + { + "japanese": "S-タブレット", + "english": "S-Tablet", + "effects": "Single: Cure Stats Down" + }, + { + "japanese": "キュリアの薬", + "english": "Curia Balm", + "effects": "Single: Cure All Abnormal Status Effects" + }, + { + "japanese": "レキュリアの薬", + "english": "Recuria Balm", + "effects": "All: Cure All Abnormal Status Effects" + }, + { + "japanese": "缶ジュース", + "english": "Canned Juice", + "effects": "Single: HP 3000 recovery" + }, + { + "japanese": "エナジードリンク", + "english": "Energy Drink", + "effects": "Single: HP 3000 recovery, CP+15" + }, + { + "japanese": "ベルコーラ", + "english": "Belcola", + "effects": "Single: HP 3000 recovery, EP 200 recovery" + }, + { + "japanese": "にがトマトウォーター", + "english": "Bitter Tomato Water", + "effects": "Single: CP+20" + }, + { + "japanese": "にがトマトシェイク", + "english": "Bitter Tomato Shake", + "effects": "Single: CP+30" + }, + { + "japanese": "ミッドナイトフィズ", + "english": "Midnight Fizz", + "effects": "Single: Revive K.O; HP 4000 Recovery" + }, + { + "japanese": "オレンジジュース", + "english": "Orange Juice", + "effects": "Single: HP 6000 Recovery; Cure Poison" + }, + { + "japanese": "ブレンドコーヒー", + "english": "Blended Coffee", + "effects": "Single: HP 6000 Recovery; Cure Sleep/Nightmare" + }, + { + "japanese": "インペリアルティー", + "english": "Imperial Tea", + "effects": "Single: HP 6000 Recovery; Cure Seal" + }, + { + "japanese": "ストロベリークレープ", + "english": "Strawberry Crepe", + "effects": "Single: HP 6000 Recovery; Cure Mute" + }, + { + "japanese": "タルタルフィッシュフライ", + "english": "Fish Fry Tartar", + "effects": "Single: HP 7500 Recovery" + }, + { + "japanese": "ヴァンセットバーグ", + "english": "Vancetberg", + "effects": "Single: 7500 Recovery; Cure Poison" + }, + { + "japanese": "龍老炒飯", + "english": "Dragon Fried Rice", + "effects": "Single: 7500 Recovery; Cure Seal" + }, + { + "japanese": "オーゼル流塩麺", + "english": "Ozel-Style Salt Noodles", + "effects": "Single: 7500 Recovery; Cure Mute" + }, + { + "japanese": "バニラゆべし", + "english": "Vanilla Dumpling", + "effects": "Single: 7500 Recovery; Cure Blind" + }, + { + "japanese": "ホットチリぺっきー", + "english": "Hot chili Pecky", + "effects": "Single: HP 7500 Recovery; Cure Sleep/Nightmare" + }, + { + "japanese": "メロンぺっきー", + "english": "Melon Pecky", + "effects": "Single: HP 7500 Recovery; Cure Burn" + }, + { + "japanese": "サモーナぺっきー", + "english": "Samona Pecky", + "effects": "Single: HP 7500 Recovery; Cure Freeze" + }, + { + "japanese": "チーズぺっきー", + "english": "Cheese Pecky", + "effects": "Single: HP 7500 Recovery; Cure Petrify" + }, + { + "japanese": "ハーブぺっきー", + "english": "Herb Pecky", + "effects": "Single: HP 7500 Recovery; Cure Faint" + }, + { + "japanese": "オレンジぺっきー", + "english": "Orange Pecky", + "effects": "Single: HP 7500 Recovery; Cure Confusion" + }, + { + "japanese": "フォレスタスープ", + "english": "Forester Soup", + "effects": "Single: HP 7500 Recovery; Cure All Abnormal Status Effects" + }, + { + "japanese": "太陽と月と星の輝きミックス", + "english": "Sun, Moon and Star Mix", + "effects": "Single: HP 1000 Recovery; 3 turns STR / ATS / SPD ↑ (Small); Cures Stat Down" + }, + { + "japanese": "アイス・オブ・ソレイユ", + "english": "Ice of Soleil", + "effects": "Single: HP 15000 Recovery; 3 turns ATS / ADF / SPD ↑ (Large); Cures Stat Down" + }, + { + "japanese": "アニバーサリーロール", + "english": "Anniversary roll", + "effects": "Single: HP 1000 Recovery; 3 turns DEF / ADF / SPD ↑ (Small); Cures Stat Down " + }, + { + "japanese": "トロピカル・ラバーズ", + "english": "Tropical Lovers", + "effects": "Single: HP 10000 Recovery; 7 turns DEF / ADF / SPD ↑ (Small); Cures Stat Down" + }, + { + "japanese": "タピオカミルクティー", + "english": "Tapioca Milk Tea", + "effects": "Single: HP 10000 Recovery; 7 turns STR ↑ (Small); Cures Stat Down" + }, + { + "japanese": "フラワリー・フィズ", + "english": "Flowery Fizz", + "effects": "Single: HP 10000 Recovery; 7 turns ATS ↑ (Small); Cures Stat Down" + }, + { + "japanese": "パワーポーション", + "english": "Power potion", + "effects": "Single: HP 4000 Recovery; CP+15; 4 turns STR ↑ (Small); Cures Stat Down" + }, + { + "japanese": "シールドポーション", + "english": "Shield potion", + "effects": "Single: HP 4000 Recovery; EP 150 Recovery; CP+15; 4 turns DEF ↑ (Small); Cures Stat Down" + }, + { + "japanese": "マインドポーション", + "english": "Mind potion", + "effects": "Single: HP 4000 Recovery; EP150 Recovery; 4 turns ATS / ADF ↑ (Small); Cures Stat Down" + }, + { + "japanese": "パワーポーションII", + "english": "Power Potion II", + "effects": "Single: HP 12000 Recovery; CP+30; 4 turns STR ↑ (Middle); Cures Stat Down" + }, + { + "japanese": "シールドポーションII", + "english": "Shield Potion II", + "effects": "Single: HP 12000 Recovery; EP 450 Recovery; CP+30; 4 turns DEF ↑ (Middle); Cures Stat Down" + }, + { + "japanese": "マインドポーションII", + "english": "Mind Potion II", + "effects": "Single: HP 12000 Recovery; EP 450; Recovery 4 turns ATS / ADF ↑ (Middle); Cures Stat Down" + }, + { + "japanese": "パワーポーションΩ", + "english": "Power potion Ω", + "effects": "Single: HP 24000 Recovery; CP+30; 4 turns STR ↑ (Large); Cures Stat Down" + }, + { + "japanese": "シールドポーションΩ", + "english": "Shield potion Ω", + "effects": "Single: HP 24000 Recovery; EP900 Recovery; CP +30 4 turns DEF ↑ (Large); Cures Stat Down" + }, + { + "japanese": "マインドポーションΩ", + "english": "Mind potion Ω", + "effects": "Single: HP 24000 Recovery; EP900 Recovery; 4 turns ATS / ADF ↑ (Large); Cures Stat Down" + }, + { + "japanese": "煙り玉", + "english": "Smoke Ball", + "effects": "All: 100% retreat" + }, + { + "japanese": "バトルスコープ", + "english": "Battle Scope", + "effects": "Information analysis" + } + ], + "ENHANCEMENT": [ + { + "japanese": "碧い雫", + "english": "Azure Drop", + "effects": "Single: EXP +10000" + }, + { + "japanese": "碧い神水", + "english": "Azure Divine Water", + "effects": "Single: EXP +25000" + }, + { + "japanese": "命の雫", + "english": "Life Drop", + "effects": "Single: Maximum HP +20" + }, + { + "japanese": "力の雫", + "english": "Strength Drop", + "effects": "Single: STR + 1" + }, + { + "japanese": "守の雫", + "english": "Defense Drop", + "effects": "Single: DEF + 1" + }, + { + "japanese": "魔の雫", + "english": "Mind Drop", + "effects": "Single: ATS + 1" + }, + { + "japanese": "霊の雫", + "english": "Spirit Drop", + "effects": "Single: ADF + 1" + }, + { + "japanese": "命の神水", + "english": "Divine Water of Life", + "effects": "Single: Maximum HP +100" + }, + { + "japanese": "力の神水", + "english": "Divine Water of Strength", + "effects": "Single: STR + 5" + }, + { + "japanese": "守の神水", + "english": "Divine Water of Defense", + "effects": "Single: DEF + 5" + }, + { + "japanese": "魔の神水", + "english": "Divine Water of Mind", + "effects": "Single: ATS + 5" + }, + { + "japanese": "霊の神水", + "english": "Divine Water of Spirit", + "effects": "Single: ADF + 5" + } + ] +} \ No newline at end of file diff --git a/resources/masterQuartz.json b/resources/masterQuartz.json new file mode 100644 index 0000000..0c922a4 --- /dev/null +++ b/resources/masterQuartz.json @@ -0,0 +1,352 @@ +{ + "EARTH": [ + { + "japanese": "ブレイブ", + "english": "Brave", + "effects": "(1) Attacks/Crafts restore HP. 5%(Min) to 11%(Max).\n\n(2) Break Damage Up. 30%(Min) to 40%(Max).\n\n(3) CP increase. +3(Min) to +4(Max) per turn. ", + "arts": "Lv 5) Needle Shoot\nLv 5) Crest\nLv 6) Earth Glow\nLv 7) Ivy Nail\nLv 8) La Crest\nLv 9) Megalith Fall\nLv 10) Gravion Hammer" + }, + { + "japanese": "スクルド", + "english": "Skuld", + "effects": "(1) Break damage increases by 40%(Min) to 75%(Max) as your\n remaining HP Increases. \n \n(2) 1(Min) to 5(Max) turns of 15% HP recovery at the\n start of battle/at low HP.\n\n(3) Automatic HP recovery. 3%(Min) to 5%(Max)\n recovery every turn.", + "arts": "Lv 5) Needle Shoot\nLv 5) Crest\nLv 6) Earth Glow\nLv 7) La Crest\nLv 8) Megalith Fall\nLv 9) Adamantine Shield \nLv 10) Gravion Hammer" + }, + { + "japanese": "イージス", + "english": "Aegis", + "effects": "(1) Attacks/Crafts have a chance to inflict charm. \n 86%(Min) to 100%(Max).\n\n(2) 18%(Min) to 24%(Max) chance to evade magic attacks.\n\n(3) Reflect attacks 1(Min) to 3(Max) times at the start of\n battle/at low HP. ", + "arts": "Lv 5) Needle Shoot\nLv 5) Crest\nLv 6) Earth Glow\nLv 7) La Crest\nLv 8) Megalith Fall\nLv 9) Adamantine Shield\nLv 10) Gravion Hammer" + }, + { + "japanese": "ゴーズ", + "english": "Minotauros", + "effects": "(1) Increased damage of attacks/crafts at the cost of Delay. \n Damage dealt+ 50%(Min) to 100%(Max).\n Delay increased by 2x(Min) to 1.5x(Max).\n \n(2) Break Damage Up. 30%(Min) to 50%(Max).\n\n(3) Critical up 3%(Min) to 7%(Max).", + "arts": "Lv 5) Needle Shoot\nLv 5) Crest\nLv 6) Earth Glow\nLv 7) Ivy Nail\nLv 8) La Crest\nLv 9) Megalith Fall" + }, + { + "japanese": "タリスマン", + "english": "Talisman", + "effects": "(1) Chance to prevent Status Effects. \n 90(Min) to 100%(Max).\n\n(2) All stats up at low hp. 2(Min) to 5(Max) Turns. \n Increase is S (Min) to L (Max).\n\n(3) 5(Min) to 10(Max) EP recovery every turn.", + "arts": "Lv 5) Needle Shoot\nLv 5) Crest\nLv 6) Earth Glow\nLv 7) Ivy Nail\nLv 8) Megalith Fall\nLv 9) Gravion Hammer\nLv 10) Adamantine Shield" + }, + { + "japanese": "インフィニティ", + "english": "Infinity", + "effects": "(1) Increases potency of healing items. \n 1.5%(Min) to 2.5%(Max)\n\n(2) Automatic CP recovery every turn. 3(Min) to 6(Max).\n\n(3) Range of recovery item effects increased. \n Circle Radius, M/M+.", + "arts": "Lv 5) Needle Shoot\nLv 5) Crest\nLv 6) Earth Glow\nLv 7) La Crest\nLv 8) Megalith Fall\nLv 9) Adamantine Shield\nLv 10) Gravion Hammer" + }, + { + "japanese": "ジオ・ソフィア", + "english": "Geo Sophia", + "effects": "(1) Automatically Recover from K.O. once per battle \n with increasing values of HP/CP.\n\n(2) 15% HP Recovery for 1(Min) to 3(Max) turns at the start\n of battle/at low hp.\n\n(3) After casting Earth Arts, \n delay is reduced by 33%(Min) to 66%(Max).", + "arts": "Lv 5) Needle Shoot\nLv 5) Crest\nLv 6) Earth Glow\nLv 7) Ivy Nail\nLv 8) Megalith Fall\nLv 9) Adamantine Shield\nLv 10) Gravion Hammer" + }, + { + "japanese": "アンドヴァリ", + "english": "Andvari", + "effects": "(1 )Reduced Damage taken 34%(starts) through 50%.(max) \n This effect is triggered by being hit.\n Scales up as you take damage.\n\n(2) Raises DEF/ADF when battle begins or when HP is low \n for 3(Min) to 5(Max) turns.\n Buff is S (Min) to L (Max), scales with level.\n\n(3) Automatic HP recovery. 3%(Min) to 5(Max)% per turn.", + "arts": "Lv 7) Crest\nLv 7) La Crest\nLv 7) Adamantine Shield\nLv 7) Crescent Mirror\nLv 7) Gravion Hammer" + } + ], + "WATER": [ + { + "japanese": "カノン", + "english": "Canon", + "effects": "(1) Increased effect of HP recovery arts. \n 2.75%(Min) to 4.25%(Max).\n \n(2) Automatic EP recovery every turn. 10(Min) to 20(Max).\n\n(3) Range of arts increased by 3(Min) to 5(Max).", + "arts": "Lv 5) Aqua Bleed\nLv 5) Tear\nLv 6) Crystal Edge\nLv 6) Thelas\nLv 7) Blue Ascension\nLv 8) Teara\nLv 9) Diamond Nova\nLv 10) Athelas" + }, + { + "japanese": "ヴァルゴ", + "english": "Virgo", + "effects": "(1) Offensive Arts deal Critical Damage. \n 45%(Min) to 80%(Max) chance.\n\n(2) Recover HP Through offensive arts. 5%(Min) to 9%(Max).\n\n(3) After casting Water Arts, delay is reduced \n by 33%(Min) to 60%(Max).", + "arts": "Lv 5) Aqua Bleed\nLv 5) Thelas\nLv 6) Crystal Edge\nLv 7) Blue Ascension\nLv 8) Athelas\nLv 9) Diamond Nova\nLv 10) Tearal" + }, + { + "japanese": "マギウス", + "english": "Magius", + "effects": "(1) Magic damage increases as your remaining HP decreases. \n Damage increased by 100 (Min) to 175 (Max)%\n\n(2) Attack Arts Critical Rate up. 40(Min) to 60(Max)%.\n\n(3) Automatically Recover from K.O. \n +120(Max) CP upon revival.", + "arts": "Lv 5) Aqua Bleed\nLv 5) Curia\nLv 6) Crystal Edge\nLv 7) Teara\nLv 8) Blue Ascension\nLv 9) Athelas\nLv 10) Diamond Nova" + }, + { + "japanese": "ブルーレオ\t", + "english": "Blue Leo", + "effects": "(1) Increase the amount of CP obtained when\n receiving damage. 3.25%(Min) to 5%(Max).\n\n(2) Increase Critical Rate by 6%(Min) to 10%(Max).\n\n(3) Decrease the delay after using S crafts\n by 33%(Min) to 60%(Max).", + "arts": "Lv 5) Aqua Bleed\nLv 5) Tear\nLv 6) Crystal Edge\nLv 7) Thelas\nLv 8) Blue Ascension\nLv 9) Athelas\nLv 10) Diamond Nova" + }, + { + "japanese": "エリクシル\t", + "english": "Elixir", + "effects": "(1) Attacks/Crafts gather Sepith. \n 75%(Min) to 100%(Max) chance.\n\n(2) All stats up at low hp. 2(Min) to 5(Max)Turns.\n Increase is S (Min) to L (Max).\n\n(3) Obtain sepith from offensive arts. \n 75%(Min) to 100%(Max) chance.\n", + "arts": "Lv 5) Aqua Bleed\nLv 5) Teara\nLv 6) Crystal Edge\nLv 7) Athelas\nLv 8) Blue Ascension\nLv 9) Tearal\nLv 10) Diamond Nova\n" + }, + { + "japanese": "ケットシー", + "english": "Ket Sea", + "effects": "(1) Absorb Magic attacks. 26%(Min) to 40%(Max) chance.\n\n(2) Attack arts Critical Rate up. \n 40%(Min) to 50%(Max) chance.\n\n(3) EP recovery with attack arts \n .1/.2% recovery of damage done.", + "arts": "Lv 5) Aqua Bleed\nLv 5) Curia\nLv 7) Crystal Edge\nLv 7) Teara\nLv 8) Blue Ascension\nLv 9) Athelas\nLv 10) Diamond Nova" + }, + { + "japanese": "アークディーバ", + "english": "Ark Diva", + "effects": "(1) Avoid magic attacks. 26%(Min) to 40%(Max) chance.\n\n(2) CP increase with attack arts. 9(Min) to 21(Max) per hit.\n\n(3) Attack arts Critical Rate up. 30%(Min) to 40%(Max).", + "arts": "Lv 5) Aqua Bleed\nLv 5) Teara\nLv 6) Crystal Edge\nLv 7) Athelas\nLv 8) Blue Ascension\nLv 9) Tearal" + }, + { + "japanese": "メルクリウス", + "english": "Mercurius", + "effects": "(1) Increases damage with Arts when enemy is weak \n to that element. Additional 35%(Min) to 60%(Max) \n increase to enemy weakness.\n\n(2) Attack arts Critical Rate up. \n 40%(Min) to 60%(Max) chance.\n\n(3) Automatic EP recovery. 5(Min) to 15(Max) per Turn.", + "arts": "Lv 7) Aqua Bleed\nLv 7) Needle Shoot\nLv 7) Firebolt\nLv 7) Air Strike\nLv 7) Soul Blur\nLv 7) Golden Sphere\nLv 7) Silver Thorn\nLv 10) Diamond Nova\n" + } + ], + "FIRE": [ + { + "japanese": "カグツチ", + "english": "Brigid", + "effects": "(1) Killing enemies restores CP. 10(Min) to 24(Max).\n\n(2) Automatically increase CP every turn. 3(Min) to 7(Max).\n\n(3) Restores 100(Min) to 200(Max) CP when HP is low. \n 1(Min) to 3(Max) times per battle.", + "arts": "Lv 5) Firebolt\nLv 5) Forte\nLv 6) Impassion\nLv 7) Venom Flame\nLv 8) La Forte\nLv 9) Flare Butterfly\nLv 10) Zeruel Cannon" + }, + { + "japanese": "レグルス", + "english": "Regulus", + "effects": "(1) Increases CP gained when you take damage. \n 3.25%(Min) to 5%(Max) Increase.\n\n(2) Raises STR when battle begins or when HP is low \n for 2(Min) to 7(Max) turns.\n Buff is S (Min) to L (Max), scales with level.\n\n(3) Reduced delay after using an S-Craft. \n 33%(Min) to 60%(Max).\n", + "arts": "Lv 5) Firebolt\nLv 5) Forte\nLv 6) Heat Up\nLv 7) Venom Flame\nLv 8) Flare Butterfly\nLv 9) La Forte\nLv 10) Zeruel Cannon" + }, + { + "japanese": "ベオウルフ", + "english": "Beowulf", + "effects": "(1) Attack Arts restore CP. 16(Min) to 30(Max).\n \n(2) All stats up at battle start. 1(Min) to 3(Max) Turns.\n Buff is S (Min) to L (Max), scales with level.\n\n(3) Restores 100(Min) to 200(Max) CP when HP is low. \n 1(Min) to 3(Max) times per battle.", + "arts": "Lv 5) Firebolt\nLv 5) Forte\nLv 6) Impassion\nLv 7) Venom Flame\nLv 8) Flare Butterfly\nLv 9) La Forte\nLv 10) Zeruel Cannon" + }, + { + "japanese": "シュバリエ", + "english": "Chevalier", + "effects": "(1) Physical damage increases as your hp decreases.\n 100%(Min) to 175%(Max).\n\n(2) Increase Critical Rate by 5%(Min) to 10%(Max).\n\n(3) Automatically Recover from K.O. \n +90(Min) to 120(Max) CP upon revival.", + "arts": "Lv 5) Firebolt\nLv 5) Heat Up\nLv 6) Impassion\nLv 7) Venom Flame\nLv 9) La Forte\nLv 9) Flare Butterfly\nLv 10) Zeruel Canon" + }, + { + "japanese": "ヴェガ", + "english": "Vega", + "effects": "(1) Attack arts Critical Rate up. \n 45%(Min) to 75%(Max) chance.\n\n(2) Attack arts inflict random status effect. \n 60%(Min) to 80%(Max) chance.\n\n(3) After casting Fire Arts, delay is reduced \n by 33%(Min) to 60%(Max).", + "arts": "Lv 5) Firebolt\nLv 5) Forte\nLv 6) Venom Flame\nLv 7) Flare Butterfly\nLv 8) Heat Up\nLv 9) Zeruel Cannon\nLv 10) Impassion" + }, + { + "japanese": "モルガン", + "english": "Morgan", + "effects": "(1) Magical damage increases as your hp decreases.\n 100%(Min) to 175%(Max).\n\n(2) ATS/ADF Up at the start of battle/when hp is low \n for 3(Min) to 7(Max) turns.\n Buff is S (Min) to L (Max), scales with level.\n \n(3) Survive with 1% HP and Restore 90(Min) to 120(Max) CP. ", + "arts": "Lv 5) Firebolt\nLv 5) Forte\nLv 6) Venom Flame\nLv 7) Flare Butterfly\nLv 8) La Forte\nLv 8) Heat Up\nLv 9) Zeruel Cannon\nLv 10) Impassion" + }, + { + "japanese": "レギンレイブ", + "english": "Leginrave", + "effects": "(1) Assault Gauge increases 2/3% per second in the field.\n\n(2) Increases assault points gained when damaged. \n Increases Equipment drop rates. 1.5%(Min) to 3%(Max) \n chance of a drop.\n\n(3) Automatically increase CP every turn. \n 3(Min) to 7(Max).", + "arts": "Lv 7) Forte\nLv 7) La Forte\nLv 7) Impassion\nLv 7) Earth Pulse\nLv 7) Zeruel Cannon" + }, + { + "japanese": "バロール", + "english": "Balor", + "effects": "(1) Critical Rate increases the more HP you have left. 17% (Min) to 22% (Max)\n\n(2) Restores 5% (Min) to 9% (Max) HP every turn.\n\n(3) Automatically revive before K.O with 50% (Min) to 100% (Max) HP, 100 (Min) to 200 (Max) CP, once per battle.", + "arts": "Lv 7) Firebolt\nLv 7) Forte\nLv 7) Venom Flame\nLv 7) Flare Butterfly\nLv 8) La Forte\nLv 8) Heat Up\nLv 9) Zeruel Cannon\nLv 10) Impassion" + } + ], + "WIND": [ + { + "japanese": "シリウス", + "english": "Sirius", + "effects": "(1) Counterattack Damage Increased. \n 125%(Min) to 300%(Max).\n\n(2) Evasion up. 6%(Min) to 10%(Max).\n\n(3) Grants Insight at start of battle/at low hp for \n up to 3(Max) turns.", + "arts": "Lv 5) Air Strike\nLv 5) Breath\nLv 6) Nemesis Arrow\nLv 7) Recuria\nLv 8) Aerial Dust\nLv 9) Holy Breath\nLv 10) Ixion Volt" + }, + { + "japanese": "テンペスト", + "english": "Tempest", + "effects": "(1) Critical Rate up as your hp decreases. \n 50%(Min) to 65%(Max).\n\n(2) Grants Insight at start of battle/at low hp \n for up to 5(Max) turns.\n\n(3) Evasion up. 1%(Min) to 7%(Max)", + "arts": "Lv 5) Air Strike\nLv 5) Nemesis Arrow\nLv 6) Breath\nLv 7) Aerial Dust\nLv 8) Recuria\nLv 9) Ixion Volt\nLv 10) Holy Breath" + }, + { + "japanese": "トール", + "english": "Thor", + "effects": "(1) Increases damage to enemies with status effects\n 35%(Min) to 70%(Max).\n\n(2) Attacks/Crafts inflict seal. \n 20%(Min) to 40%(Max) chance.\n\n(3) Break damage increased by 20%(MIn) to 30%(Max).", + "arts": "Lv 5) Air Strike\nLv 5) Breath\nLv 6) Nemesis Arrow\nLv 7) Recuria\nLv 8) Aerial Dust\nLv 9) Holy Breath\nLv 10) Ixion Volt" + }, + { + "japanese": "エル・カノン", + "english": "El Canon", + "effects": "(1) Increases effect of HP recovery arts. \n 2.75x(Min) to 4.25x(Max).\n\n(2) Attack Arts restore EP up to .5%(Max) of damage dealt.\n\n(3) After casting Wind Arts, delay is reduced \n by 33%(Min) to 60%(Max).", + "arts": "Lv 5) Air Strike\nLv 5) Breath\nLv 6) Nemesis Arrow\nLv 7) Recuria\nLv 8) Holy Breath\nLv 9) Aerial Dust\nLv 10) Ixion Volt" + }, + { + "japanese": "クサナギ", + "english": "Kusanagi", + "effects": "(1) Increases Critical Damage by 75%(Min) to 120%(Max)\n \n(2) Increases Critical Rate by 6%(Min) to 10%(Max)\n\n(3) Evasion up. 3%(Min) to 7%(Max)", + "arts": "Lv 5) Air Strike\nLv 5) Breath\nLv 6) Nemesis Arrow\nLv 7) Recuria\nLv 8) Aerial Dust\nLv 9) Holy Breath\nLv 10) Ixion Volt" + }, + { + "japanese": "ケルビム", + "english": "Cherubim", + "effects": "(1) Attacks/Crafts restore EP. 1.1%(Max) of damage dealt.\n\n(2) Attack Arts restore CP. 9(Min) to 21(Max) per hit.\n\n(3) Increases Critical Rate by 3%(Min) to 7%(Max)", + "arts": "Lv 5) Air Strike\nLv 5) Nemesis Arrow\nLv 6) Breath\nLv 7) Aerial Dust\nLv 8) Recuria\nLv 9) Ixion Volt\nLv 10) Holy Breath" + }, + { + "japanese": "タケミカヅチ", + "english": "Takemikazuchi", + "effects": "(1) Evading an attack increases damage by \n 40%(Min) to 75%(Max), stacking five times.\n\n(2) Break damage increased by 30%(Min) to 50%(Max).\n\n(3) Evasion up. 3%(Min) to 7%(Max).", + "arts": "Lv 5) Recuria\nLv 6) Heat Up\nLv 7) Nemesis Arrow\nLv 8) Ixion Volt" + }, + { + "japanese": "ピクシィ", + "english": "Pixie", + "effects": "(1) Attacks Arts restore EP. .5%(Max) of damage dealt.\n\n(2) Attack Arts inflict random stat down. \n 80%(Min) to 120%(Max) chance.\n\n(3) After casting Wind Arts, delay is reduced by 33%(Min) to\n 60%(Max).", + "arts": "Lv 5) Air Strike\nLv 5) Breath\nLv 6) Nemesis Arrow\nLv 7) Recuria\nLv 8) Aerial Dust\nLv 9) Holy Breath\nLv 10) Ixion Volt" + } + ], + "TIME": [ + { + "japanese": "ディーヴァ", + "english": "Deva", + "effects": "(1) Evade magic attacks. 26%(Min) to 40%(Max) chance.\n\n(2) Attack Arts restore CP. 9(Min) to 21(Max) per hit.\n\n(2) Break Damage Up. 30%(Min) to 40%(Max).\n", + "arts": "Lv 5) Soul Blur\nLv 6) Chrono Drive\nLv 7) Calvary Edge\nLv 8) Chrono Break\nLv 9) Lost Genesis\nLv 10) Chrono Burst" + }, + { + "japanese": "ゼファー", + "english": "Zephyr", + "effects": "(1) Attacks/crafts cause stat down. 85%(Min) to 135%(Max) \n chance.\n \n(2) Raises SPD when battle begins or when HP is low \n for 2(Min) to 7(Max) turns.\n Buff is S (Min) to L (Max), scales with level.\n\n(3) Delay +2(Min) to +4(Max) on Attacks/Crafts.", + "arts": "Lv 5) Soul Blur\nLv 6) Chrono Drive\nLv 7) Chrono Break\nLv 8) Callvary Edge\nLv 9) Chrono Burst\nLv 10) Lost Genesis" + }, + { + "japanese": "カッツェ", + "english": "Katze", + "effects": "(1) Absorb magic attacks. 26%(Min) to 40%(Max) chance\n\n(2) Attack arts Critical Rate up. \n 45%(Min) to 60%(Max) chance.\n\n(3) After casting Time Arts, delay is reduced by 33%(Min) to \n 60%(Max).", + "arts": "Lv 5) Soul Blur\nLv 6) Chrono Drive\nLv 7) Calvary Edge\nLv 8) Chrono Break\nLv 9) Lost Genesis\nLv 10) Chrono Burst" + }, + { + "japanese": "グングニル", + "english": "Gungnir", + "effects": "(1) Increases Critical Damage by \n 75%(Min) to 120%(Max) chance.\n\n(2) Increases Critical Rate by 5%(Min) to 10%(Max).\n\n(3) Attack arts Critical Rate up. 30%(Min) to 40%(Max).", + "arts": "Lv 5) Soul Blur\nLv 6) Chrono Drive\nLv 7) Calvary Edge\nLv 8) Chrono Break\nLv 9) Lost Genesis\nLv 10) Chrono Burst" + }, + { + "japanese": "ヴォータン", + "english": "Wotan", + "effects": "(1) Critical rate increases by 15%(Min) to 25%(Max) as your \n remaining HP Increases.\n \n(2) Automatic HP Recovery. 5%(Min) to 9%(Max) every turn.\n\n(3) Automatically increase CP every turn. 3(Min) to 5(Max).", + "arts": "Lv 5) Soul Blur\nLv 6) Chrono Drive\nLv 7) Calvary Edge\nLv 8) Chrono Break\nLv 9) Lost Genesis\n" + }, + { + "japanese": "オボロ", + "english": "Gloom", + "effects": "(1) Attacks/Crafts randomly apply status effects. \n 36%(Min) to 48%(Max) chance.\n\n(2) Attack Arts randomly apply status effects. \n 55%(Min) to 75%(Max) chance.\n\n(3) Stealth for up to 3(Max) turns at the start of battle.", + "arts": "Lv 5) Soul Blur\nLv 6) Chrono Drive\nLv 7) Calvary Edge\nLv 8) Chrono Break\nLv 9) Lost Genesis\nLv 10) Chrono Burst" + }, + { + "japanese": "スバル", + "english": "Subaru", + "effects": "(1) Counterattack Damage Increased.\n 125%(Min) to 300%(Max)\n\n(2) Raises SPD when battle begins or when HP is low \n for 3(Min) to 7(Max) turns.\n Buff is S (Min) to L (Max), scales with level.\n\n(3) Evasion up. 3%(Min) to 7%(Max).", + "arts": "Lv 5) Soul Blur\nLv 6) Chrono Drive\nLv 7) Chrono Break\nLv 8) Calvary Edge\nLv 9) Chrono Burst\nLv 10) Lost Genesis" + }, + { + "japanese": "アルタイル", + "english": "Altair", + "effects": "(1) Break damage increases by 40%(Min) \n to 75%(Max) as your remaining HP Increases. \n\n(2) Raises SPD when battle begins or when HP is low \n for 3(Min) to 7(Max) turns.\n Buff is S (Min) to L (Max), scales with level.\n\n(3) Automatic HP Recovery. 3%(Min) to 5%(Max) per turn", + "arts": "Lv 5) Soul Blur\nLv 6) Chrono Drive\nLv 7) Chrono Break\nLv 8) Calvary Edge\nLv 9) Chrono Burst\nLv 10) Lost Genesis" + } + ], + "SPACE": [ + { + "japanese": "メビウス", + "english": "Moebius", + "effects": "(1) Increases potency of healing items. \n 1.5% (Min) to 2.5% (Max)\n\n(2) Increased the range of healing items by 2(Min) to 8(Max).\n\n(3) Healing items affect a wider area. Circle (M/M+)", + "arts": "Lv 5) Golden Sphere\nLv 6) Shining\nLv 7) Fortuna\nLv 8) Cross Crusade\nLv 9) Seraphim Ring\nLv 10) Seventh Caliber" + }, + { + "japanese": "ソフィア", + "english": "Sophia", + "effects": "(1) Automatically Recover from K.O. HP/CP \n restore scales with level.\n\n(2) Raises DEF/ADF when battle begins or when HP is low \n for 2(Min) to 6(Max) turns.\n Buff is S (Min) to L (Max), scales with level.\n\n(3) After casting Space Arts, delay is reduced \n by 33%(Min) to 60%(Max).", + "arts": "Lv 5) Golden Sphere\nLv 6) Shining\nLv 7) Fortuna\nLv 8) Cross Crusade\nLv 9) Seraphim Ring\nLv 10) Seventh Caliber" + }, + { + "japanese": "デュナミス", + "english": "Dunamis", + "effects": "(1) Attacks/Crafts restore EP. 1.1%(Max) of damage dealt.\n\n(2) Raises DEF/ADF when battle begins or when HP is low \n for 2(Min) to 5(Max) turns.\n Buff is S (Min) to L (Max), scales with level.\n\n(3) Attack arts Critical Rate up. 30%(Min) to 40%(Max).", + "arts": "Lv 5) Golden Sphere\nLv 6) Fortuna\nLv 7) Cross Crusade\nLv 8) Shining\nLv 9) Seventh Caliber\nLv 10) Seraphim Ring" + }, + { + "japanese": "エンブレム", + "english": "Emblem", + "effects": "(1) HP / EP / CP regenerates in the field. \n 1%(Min) to 3%(Max).\n\n(2) All stats up at battle start. 2(Min) to 5(Max)Turns.\n Increase is S (Min) to L (Max).\n\n(3) Increase dropped items (Only when user kills enemy). \n Multiply number of items dropped by up to 3%.", + "arts": "Lv 5) Golden Sphere\nLv 6) Fortuna\nLv 7) Shining\nLv 8) Cross Crusade\nLv 9) Seventh Caliber\nLv 10) Seraphim Ring" + }, + { + "japanese": "ヴァルハラ", + "english": "Valhalla", + "effects": "(1) Physical Damage increases the more health you have.\n 25%(Min) to 60%(Max).\n\n(2) Killing enemies restores hp. 14%(Min) to 24%(Max).\n\n(3) Evasion up. 3%(Min) to 7%(Max).", + "arts": "Lv 5) Golden Sphere\nLv 6) Fortuna\nLv 7) Shining\nLv 8) Cross Crusade\n" + }, + { + "japanese": "カリバーン", + "english": "Caliber", + "effects": "(1) Attack Arts restore CP. 16(Min) to 30(Max) per hit.\n\n(2) Raises STR/ATS when battle begins or when HP is low \n for 3(Min) to 6(Max) turns.\n Buff is S (Min) to L (Max), scales with level.\n\n(3) CP restored at low health. 100%(Min) to \n 200%(Max) restored up to 2 times per battle.", + "arts": "Lv 5) Golden Sphere\nLv 6) Fortuna\nLv 7) Shining\nLv 8) Cross Crusade\nLv 9) Seventh Caliber\nLv 10) Seraphim Ring" + }, + { + "japanese": "ソレイユ", + "english": "Soleil", + "effects": "(1) Killing enemies restores CP. 10(Min) to 24(Max).\n\n(2) Automatically increase CP every turn. 3(Min) to 7(Max).\n\n(3) Automatic HP recovery. 3%(Min) to 5%(Max)\n recovery every turn.", + "arts": "Lv 5) Golden Sphere\nLv 6) Fortuna\nLv 7) Cross Crusade\nLv 8) Shining\nLv 9) Seventh Caliber\nLv 10) Seraphim Ring" + }, + { + "japanese": "ミストラル", + "english": "Mistral", + "effects": "(1) Attacks/crafts cause stat down. 85%(Min) to 150%(Max) \n chance.\n\n(2) Raises SPD when battle begins or when HP is low \n for 3(Min) to 7(Max) turns.\n Buff is M (Min) to L (Max), scales with level.\n\n(3) Increases Critical Rate by 3%(Min) to 7%(Max).", + "arts": "Lv 5) Golden Sphere\nLv 6) Fortuna\nLv 7) Shining\nLv 8) Cross Crusade\nLv 9) Seventh Caliber\nLv 10) Seraphim Ring" + } + ], + "MIRAGE": [ + { + "japanese": "ティタニア", + "english": "Titania", + "effects": "(1) Attack Arts restore EP up to .5%(Max) of damage dealt.\n\n(2) Raises STR/ATS when battle begins or when HP is low \n for 3(Min) to 7(Max) turns.\n Buff is S (Min) to L (Max), scales with level.\n\n(3) After casting Mirage Arts, delay is reduced by \n 33%(Min) to 60%(Max).", + "arts": "Lv 5) Silver Thorn\nLv 5) Analyze \nLv 7) Galion Fort\nLv 8) Saintly Force\nLv 9) Albion Wolf\nLv 10) Crescent Mirror" + }, + { + "japanese": "スコルピオ", + "english": "Scorpio", + "effects": "(1) Increases damage to a broken enemy. \n 60%(Min) to 100%(Max).\n\n(2) Increases Break damage relative to lower HP. \n 90%(Min) to 150%(Max).\n\n(3) Attacks/Crafts inflict Nightmare. \n 10%(Min) to 20(Max)%.", + "arts": "Lv 5) Silver Thorn\nLv 5) Analyze\nLv 6) Saintly Force\nLv 7) Galion Fort\nLv 9) Albion Wolf\nLv 10) Crescent Mirror" + }, + { + "japanese": "パンドラ", + "english": "Pandora", + "effects": "(1) Offensive arts do more damage, but consume more EP.\n 75%(Min) to 120(Max)% for 1.5x EP.\n\n(2) Attack arts Critical Rate up. 40%(Min) to 60%(Max).\n\n(3) Range of arts is increased by up to 5(Max).", + "arts": "Lv 5) Silver Thorn\nLv 5) Analyze\nLv 6) Saintly Force\nLv 7) Galion Fort\nLv 9) Albion Wolf\nLv 10) Crescent Mirror" + }, + { + "japanese": "エルダ", + "english": "Elda", + "effects": "(1) Physical damage increases as your hp increases.\n 20%(Min) to 65%(Max).\n\n(2) Automatic EP Recovery. 10(Min) to 30(Max) per turn.\n\n(3) Automatically increase CP every turn. 3(Min) to 5(Max).", + "arts": "Lv 5) Silver Thorn\nLv 5) Analyze\nLv 6) Saintly Force\nLv 7) Galion Fort\nLv 8) Crescent Mirror\nLv 9) Albion Wolf" + }, + { + "japanese": "キーパー", + "english": "Keeper", + "effects": "(1) Damage taken is reduced the less HP you have.\n 10%(Min) to 25%(Max). Scales with level.\n\n(2) Break Damage Up. 30%(Min) to 50%(Max).\n\n(3) CP restores at low HP. 100(Min) to 200(Max), \n 2(Max) times per battle.", + "arts": "Lv 5) Silver Thorn\nLv 5) Analyze\nLv 6) Saintly Force\nLv 7) Galion Fort\nLv 9) Crescent Mirror \nLv 10) Albion Wolf" + }, + { + "japanese": "カレイド", + "english": "Kaleido", + "effects": "(1) Attacks/Crafts gather Sepith, \n 75%(Min) to 100%(Max) chance.\n\n(2) Experience gain increased by up to 2%(Max).\n\n(3) Offensive Arts gather Sepith, \n 75%(Min) to 100%(Max) chance.", + "arts": "Lv 5) Silver Thorn\nLv 5) Analyze\nLv 6) Saintly Force\nLv 8) Galion Fort\nLv 9) Albion Wolf\nLv 10) Crescent Mirror" + }, + { + "japanese": "ムラクモ", + "english": "Murakumo", + "effects": "(1) Attacks/Crafts inflict random status effects.\n 36%(Min) to 50%(Max) chance.\n\n(2) Evasion Up. 6%(Max) to 10%(Max)\n\n(3) Stealth for up to 2 turns at the start of battle.", + "arts": "Lv 5) Silver Thorn\nLv 5) Analyze\nLv 6) Saintly Force\nLv 7) Galion Fort\nLv 9) Albion Wolf\nLv 10) Crescent Mirror" + }, + { + "japanese": "ヤルダバオト", + "english": "Yaldabaoth", + "effects": "(1) Increase damage every time it's your turn,\n stacking up to 5 times.\n 15%(Min) to 50%(Max) per stack.\n\n(2) All stats up at battle start. 2(Min) to 5(Max)Turns.\n Increase is S (Min) to L (Max).\n\n(3) Attacks/Crafts can inflict Deathblow.\n 5%(Min) to 7%(Max) chance.", + "arts": "Lv 5) Saintly Force\nLv 6) Lost Genesis\nLv 7) Seventh Caliber\nLv 8) Albion Wolf" + } + ] +} \ No newline at end of file diff --git a/resources/quartz.json b/resources/quartz.json new file mode 100644 index 0000000..8d2e79b --- /dev/null +++ b/resources/quartz.json @@ -0,0 +1,1245 @@ +{ + "EARTH": [ + { + "japanese": "ニードルショット", + "english": "Needle Shoot\n", + "stats": "Attack (Power C +): Single \n" + }, + { + "japanese": "アイヴィネイル", + "english": "Ivy Nail\n", + "stats": "Attack (Power D +): Circle (M)\n", + "notes": "Poison / Petrify 50%\n" + }, + { + "japanese": "メガリスフォール", + "english": "Megalith Fall", + "stats": "Attack (Power A +): Circle (M)\n", + "notes": "4 Turns DEF Down (M) (100%)\n" + }, + { + "japanese": "グラヴィオン・ハンマー", + "english": "Gravion Hammer", + "stats": "Attack (Power SS): All\n", + "notes": "4 Turns MOV/SPD Down (L) (100%)\n" + }, + { + "japanese": "クレスト", + "english": "Crest", + "stats": "Support: Circle (M)", + "notes": "DEF Up (S)\n" + }, + { + "japanese": "ラ・クレスト", + "english": "La Crest", + "stats": "Support: Circle (LL)", + "notes": "DEF Up (M)\n" + }, + { + "japanese": "アースグロウ", + "english": "Earth Pulse", + "stats": "Support: Single", + "notes": "HP Recovery 25%\n" + }, + { + "japanese": "アダマスシールド", + "english": "Adamantine Shield", + "stats": "Support: Circle (M)", + "notes": "Perfect Guard\n" + }, + { + "japanese": "防御", + "english": "Defense 1/2/3", + "stats": "Increases Def by rarity. 50/100/200" + }, + { + "japanese": "破壊", + "english": "Destruction 1/2/3", + "stats": "Increases Str by Rarity. 15/30/60", + "notes": "Break Damage - 20/40/60%. Scales by Rarity" + }, + { + "japanese": "毒の刃", + "english": "Poison 1/2/3/4", + "stats": "Increases Str by Rarity. 15/30/60/120", + "notes": "Chance to Poison on Attack/Craft - 10/15/20/30% - Scales by Rarity" + }, + { + "japanese": "石化の刃", + "english": "Petrify 1/2/3/4", + "stats": "Increases Str by Rarity. 15/30/60/120", + "notes": "Chance to Petrify on Attack/Craft - 10/15/20/23% - Scales by Rarity" + }, + { + "japanese": "破盾の牙", + "english": "Shield Breaker 1/2/3/4", + "stats": "Increases Str by Rarity. 15/30/60/120", + "notes": "Chance to inflict DEF down on Attack/Craft - 20/25/30/40% - Scales by Rarity" + }, + { + "japanese": "金剛盾", + "english": "Impenetrable Shield", + "stats": "HP+3000/DEF+120/ADF+120/ATS+60", + "arts": "La Crest, Earth Pulse, Adamantine Shield" + }, + { + "japanese": "真・金剛盾", + "english": "True Impenetrable Shield", + "stats": "HP+6000/DEF+240/ADF+240/ATS+120", + "arts": "La Crest, Earth Pulse, Adamantine Shield" + }, + { + "japanese": "地言鈴", + "english": "Earth Bell", + "stats": "ATS+40", + "notes": "Delay after casting Earth arts is halved" + }, + { + "japanese": "鋼星鈴", + "english": "Steel Bell", + "stats": "ATS+80", + "notes": "Increases damage of Earth arts by 30%\nDelay after casting Earth arts is halved", + "arts": "Megalith Fall" + }, + { + "japanese": "真・鋼星鈴", + "english": "True Steel Bell", + "stats": "ATS+160", + "notes": "Increases damage of Earth arts by 40%\nDelay after casting Earth arts is halved", + "arts": "Megalith Fall" + }, + { + "japanese": "玄武刃", + "english": "Genbu", + "stats": "STR+80", + "notes": "Chance to Poison and Petrify on Attack/Craft - 25%" + }, + { + "japanese": "真・玄武刃", + "english": "True Genbu", + "stats": "STR+160", + "notes": "Chance to Poison and Petrify on Attack/Craft - 30%" + }, + { + "japanese": "耀脈", + "english": "Septium Vein", + "stats": "EP+50/STR+25/ATS+25", + "notes": "Increase in dropped Sepith of defeated enemies." + }, + { + "japanese": "羅漢珠", + "english": "Rakan Gem", + "stats": "EP+100/STR+50/ATS+50", + "notes": "Break damage+80%, increase in dropped Sepith of defeated enemies." + }, + { + "japanese": "羅漢煌珠", + "english": "Shining Rakan Gem", + "stats": "EP+200/STR+100/ATS+100", + "notes": "Break damage+100%, increase in dropped Sepith of defeated enemies." + }, + { + "japanese": "龍脈", + "english": "Dragon Vein", + "stats": "HP+1000/DEF+100", + "notes": "Increases assault points gradually in the field." + }, + { + "japanese": "不動珠", + "english": "Acala Gem", + "stats": "HP+2000/DEF+200", + "notes": "Increases assault points gradually in the field." + }, + { + "japanese": "不動煌珠", + "english": "Shining Acala Gem", + "stats": "HP+4000/DEF+400", + "notes": "Increases assault points gradually in the field." + }, + { + "japanese": "琥耀珠", + "english": "Topaz Gem ", + "stats": "DEF/ADF+400" + }, + { + "japanese": "琥耀煌珠", + "english": "Shining Topaz Gem", + "stats": "DEF/ADF+800 " + }, + { + "japanese": "神楽", + "english": "Kagura", + "stats": "DEF/ADF+600", + "notes": "Damage increased as the number of enemies increases (up to 70%)" + } + ], + "WATER": [ + { + "japanese": "テイア", + "english": "Tear", + "stats": "Recovery: Single", + "notes": "HP small recovery. Burn Heal" + }, + { + "japanese": "テイアラ", + "english": "Teara", + "stats": "Recovery: Single", + "notes": "HP medium recovery. Burn Heal" + }, + { + "japanese": "テイアラル", + "english": "Tearal", + "stats": "Recovery: Single", + "notes": "HP large recovery. Burn Heal" + }, + { + "japanese": "キュリア", + "english": "Curia", + "stats": "Recovery: Single", + "notes": "Cure all status effects" + }, + { + "japanese": "セラス", + "english": "Thelas", + "stats": "Recovery: Single", + "notes": "Revive and HP small recovery" + }, + { + "japanese": "アセラス", + "english": "Athelas", + "stats": "Recovery: Single", + "notes": "Revive and HP large recovery" + }, + { + "japanese": "アクアブリード", + "english": "Aqua Bleed", + "stats": "Attack (Power C +): Single", + "notes": "Mute (50%)" + }, + { + "japanese": "クリスタルエジ", + "english": "Crystal Edge", + "stats": "Attack (Power C +): Straight line (M)", + "notes": "Freeze (25%)" + }, + { + "japanese": "ブルーアセンション", + "english": "Blue Ascension", + "stats": "Attack (Power A): Circle (L)", + "notes": "Mute (100%)" + }, + { + "japanese": "ダイヤモンド ノヴァ", + "english": "Diamond Nova", + "stats": "Attack (power S +): Circle (LL)", + "notes": "Freeze (80%)" + }, + { + "japanese": "HP", + "english": "HP 1/2/3", + "stats": "Increases HP by rarity. 1200/2400/4800" + }, + { + "japanese": "魔防", + "english": "Shield 1/2/3", + "stats": "ADF+50/100/200 & Magic evasion up 10/15/20%" + }, + { + "japanese": "封魔の刃", + "english": "Mute 1/2/3/4", + "stats": "Increases Str by Rarity. 15/30/60/120", + "notes": "Chance to Mute on Attack/Craft - 10/15/20/30% - Scales by Rarity" + }, + { + "japanese": "凍結の刃", + "english": "Freeze 1/2/3/4", + "stats": "Increases Str by Rarity. 15/30/60/120", + "notes": "Chance to Freeze on Attack/Craft - 10/15/20/30% - Scales by Rarity" + }, + { + "japanese": "破霊の牙", + "english": "Spirit Breaker 1/2/3/4", + "stats": "Increases Str by Rarity. 15/30/60/120", + "notes": "Chance to inflict ADF down on Attack/Craft - 20/25/30/40% - Scales by Rarity" + }, + { + "japanese": "丹精", + "english": "Effort", + "stats": "EP+100/ATS+50", + "notes": "Always cook a great dish for compatible characters.", + "arts": "Thelas" + }, + { + "japanese": "瀑布", + "english": "Waterfall ", + "notes": "Increases damage against enemies lower leveled than you up to 50%." + }, + { + "japanese": "真・瀑布", + "english": "True Waterfall ", + "notes": "Increases damage against enemies lower leveled than you up to 100%." + }, + { + "japanese": "水言鈴", + "english": "Water Bell ", + "stats": "ATS+40", + "notes": "Delay after casting water arts is halved" + }, + { + "japanese": "海星鈴", + "english": "Ocean Bell ", + "stats": "ATS+80", + "notes": "Water arts deal 30% more damage\nDelay after casting water arts is halved", + "arts": "Blue Ascension" + }, + { + "japanese": "真・海星鈴", + "english": "True Ocean Bell ", + "stats": "ATS+160", + "notes": "Water arts deal 40% more damage\nDelay after casting water arts is halved", + "arts": "Blue Ascension" + }, + { + "japanese": "青龍刃", + "english": "Seiryuu", + "stats": "STR+80", + "notes": "25% chance to both freeze and mute" + }, + { + "japanese": "真・青龍刃", + "english": "True Seiryuu", + "stats": "STR+160", + "notes": "30% chance to both freeze and mute" + }, + { + "japanese": "治癒", + "english": "Heal", + "stats": "HP+1000/EP+60", + "notes": "HP gradually increases in the field", + "arts": "Tear, Teara, Curia" + }, + { + "japanese": "氷将珠", + "english": "Hyoushou Gem", + "stats": "HP+2000/EP+120/ATS+100", + "notes": "HP gradually increases in the field", + "arts": "Diamond Nova" + }, + { + "japanese": "氷将煌珠", + "english": "Shining Hyoushou Gem", + "stats": "HP+4000/EP+240/ATS+200", + "notes": "HP gradually increases in the field", + "arts": "Diamond Nova" + }, + { + "japanese": "仙道珠", + "english": "Sennin Gem ", + "stats": "HP+3000/ADF+200/Magic Evasion+25%", + "arts": "Tearal, Athelas" + }, + { + "japanese": "仙道煌珠", + "english": "Shining Sennin Gem ", + "stats": "HP+6000/ADF+400/Magic Evasion+30%", + "arts": "Tearal, Athelas" + }, + { + "japanese": "蒼耀珠", + "english": "Sapphire Gem ", + "stats": "HP+6000/EP+200" + }, + { + "japanese": "蒼耀煌珠", + "english": "Shining Sapphire Gem ", + "stats": "HP+12000/EP+400" + } + ], + "FIRE": [ + { + "japanese": "ファイアボルト\t", + "english": "Fire Bolt", + "stats": "Attack (Power C +): Single", + "notes": "50% Chance to Burn" + }, + { + "japanese": "ベノムフレイム", + "english": "Venom Flame", + "stats": "Attack (Power C +): Circle (M)", + "notes": "25% Chance to Poison, 25% Chance to Burn" + }, + { + "japanese": "フレアバタフライ", + "english": "Flare Butterfly", + "stats": "Attack (Power A +): Circle (L)", + "notes": "Burn (25%)" + }, + { + "japanese": "ゼルエル・カノン", + "english": "Zeruel Cannon", + "stats": "Attack (Power SSS): Circle (S)", + "notes": "Burn (100%)" + }, + { + "japanese": "フォルテ", + "english": "Forte", + "stats": "Support: Circle (M)", + "notes": "STR Up (S)" + }, + { + "japanese": "ラ・フォルテ", + "english": "La Forte", + "stats": "Support: Circle (LL)", + "notes": "STR Up (M)" + }, + { + "japanese": "ウォリアーゲイン", + "english": "Heat Up", + "stats": "Support: ALL", + "notes": "CP+20, cure Status Down (All)" + }, + { + "japanese": "メルティライズ", + "english": "Impassion", + "stats": "Support: Single", + "notes": "CP Recovery" + }, + { + "japanese": "攻撃", + "english": "Attack 1/2/3", + "stats": "Increases Str by Rarity. 20/50/100" + }, + { + "japanese": "必殺", + "english": "Critical 1/2/3", + "stats": "Increases Critical by Rarity. 2/4/6%" + }, + { + "japanese": "封技の刃", + "english": "Seal 1/2/3/4", + "stats": "Increases Str by Rarity. 15/30/60/120", + "notes": "Chance to Seal on Attack/Craft - 10/15/20/30% - Scales by Rarity" + }, + { + "japanese": "炎傷の刃", + "english": "Burn 1/2/3/4", + "stats": "Increases Str by Rarity. 15/30/60/120", + "notes": "Chance to Burn on Attack/Craft - 10/15/20/30% - Scales by Rarity" + }, + { + "japanese": "破剣の牙", + "english": "Sword Breaker 1/2/3/4", + "stats": "Increases Str by Rarity. 15/30/60/120", + "notes": "Chance to inflict STR down on Attack/Craft - 20/25/30/40% - Scales by Rarity" + }, + { + "japanese": "憤怒", + "english": "Rage", + "stats": "Accuracy +100%/Evasion+10%", + "notes": "Counters always Critical", + "arts": "La Forte" + }, + { + "japanese": "真・憤怒", + "english": "True Rage", + "stats": "Accuracy +100%/Evasion+10%", + "notes": "Counters always Critical", + "arts": "La Forte" + }, + { + "japanese": "火言鈴", + "english": "Fire Bell", + "stats": "ATS+40", + "notes": "Delay after casting fire arts is halved" + }, + { + "japanese": "焔星鈴", + "english": "Pyre Bell", + "stats": "ATS+80", + "notes": "Fire arts deal 30% more damage\nDelay after casting fire arts is halved", + "arts": "Flare Butterfly" + }, + { + "japanese": "真・焔星鈴", + "english": "True Pyre Bell", + "stats": "ATS+160", + "notes": "Fire arts deal 40% more damage\nDelay after casting fire arts is halved", + "arts": "Flare Butterfly" + }, + { + "japanese": "朱雀刃", + "english": "Suzaku", + "stats": "STR+80", + "notes": "25% chance to both burn and seal" + }, + { + "japanese": "真・朱雀刃", + "english": "True Suzaku", + "stats": "STR+160", + "notes": "30% chance to both burn and seal" + }, + { + "japanese": "練気", + "english": "Invigorate", + "stats": "STR+50", + "notes": "CP recovers in the field", + "arts": "Forte, Impassion" + }, + { + "japanese": "武神珠", + "english": "Mars Gem", + "stats": "STR+100/Crit 8%", + "notes": "CP recovers in the field" + }, + { + "japanese": "武神煌珠", + "english": "Shining Mars Gem", + "stats": "STR+200/Crit 10%", + "notes": "CP recovers in the field" + }, + { + "japanese": "機功", + "english": "Ingenuity", + "stats": "EP+50/ATS+40", + "notes": "EP recovers in the field", + "arts": "Heat Up" + }, + { + "japanese": "炎帝珠", + "english": "Vulcan Gem", + "stats": "EP+100/STR+80/ATS+80", + "notes": "EP recovers in the field", + "arts": "Zeruel Cannon" + }, + { + "japanese": "炎帝煌珠", + "english": "Shining Vulcan Gem", + "stats": "EP+200/STR+160/ATS+160", + "notes": "EP recovers in the field", + "arts": "Zeruel Cannon" + }, + { + "japanese": "紅耀珠", + "english": "Ruby Gem", + "stats": "STR+200" + }, + { + "japanese": "紅耀煌珠", + "english": "Shining Ruby Gem", + "stats": "STR+400" + }, + { + "japanese": "獅子王", + "english": "Lion", + "stats": "STR+300", + "notes": "Damage dealt increases as the number of enemies decreases (up to + 35%)" + } + ], + "WIND": [ + { + "japanese": "エアストライク", + "english": "Air Strike", + "stats": "Attack (Power C +): Single", + "notes": "Blind (50%)" + }, + { + "japanese": "ネメシスアロー", + "english": "Nemesis Arrow", + "stats": "Attack (Power B): Straight line (M)", + "notes": "Seal (20%)" + }, + { + "japanese": "エアリアルダスト", + "english": "Aerial Dust", + "stats": "Attack (Power A +): Circle (L)", + "notes": "Blind (100%)" + }, + { + "japanese": "イクシオン・ヴォルト", + "english": "Ixion Volt", + "stats": "Attack (power SS +): Circle (LL)", + "notes": "Seal (80%)" + }, + { + "japanese": "ブレス", + "english": "Breath", + "stats": "Recovery: Circle (M)", + "notes": "HP Heal (S)" + }, + { + "japanese": "ホーリーブレス", + "english": "Holy Breath", + "stats": "Recovery: Circle (L)", + "notes": "HP Heal (M)" + }, + { + "japanese": "レキュリア", + "english": "Recuria", + "stats": "Recovery: Circle (LL)", + "notes": "Party-wide ailment heal" + }, + { + "japanese": "回避", + "english": "Evade 1/2/3", + "stats": "Evasion+3/6/9%" + }, + { + "japanese": "移動", + "english": "Move 1/2/3", + "stats": "SPD+1/2/3 MOV+2/4/6" + }, + { + "japanese": "暗闇の刃", + "english": "Blind 1/2/3/4", + "stats": "Increases Str by Rarity. 15/30/60/120", + "notes": "Chance to Blind on Attack/Craft - 10/15/20/30% - Scales by Rarity" + }, + { + "japanese": "睡眠の刃", + "english": "Sleep 1/2/3/4", + "stats": "Increases Str by Rarity. 15/30/60/120", + "notes": "Chance to Sleep on Attack/Craft - 10/15/20/30% - Scales by Rarity" + }, + { + "japanese": "破脚の牙", + "english": "Leg Breaker 1/2/3/4", + "stats": "Increases Str by Rarity. 15/30/60/120", + "notes": "Chance to inflict MOV down on Attack/Craft - 20/25/30/40% - Scales by Rarity" + }, + { + "japanese": "美臭", + "english": "Scent", + "stats": "STR/ATS+15/SPD+2/Evasion+6%", + "notes": "Enemies will notice you more easily out on the field", + "arts": "Breath, Nemesis Arrow" + }, + { + "japanese": "蠱惑", + "english": "Allure", + "stats": "STR/ATS+30/SPD +4/Evasion+9%", + "notes": "Enemies will notice you more easily out on the field", + "arts": "Recuria, Aerial Dust" + }, + { + "japanese": "真・蠱惑", + "english": "True Allure", + "stats": "STR/ATS+60/SPD +6/Evasion+12%", + "notes": "Enemies will notice you more easily out on the field", + "arts": "Holy Breath, Ixion Volt" + }, + { + "japanese": "風言鈴", + "english": "Wind Bell", + "stats": "ATS+40", + "notes": "Delay after casting Wind arts is halved" + }, + { + "japanese": "嵐言鈴", + "english": "Storm Bell", + "stats": "ATS+80", + "notes": "Wind arts damage+30% \nDelay after casting Wind arts is halved", + "arts": "Aerial Dust" + }, + { + "japanese": "真・嵐言鈴", + "english": "True Storm Bell", + "stats": "ATS+160", + "notes": "Wind arts damage+40%\nDelay after casting Wind arts is halved", + "arts": "Aerial Dust" + }, + { + "japanese": "革命", + "english": "Revolution", + "notes": "Increases damage dealt against enemies higher leveled than you by up to 50%." + }, + { + "japanese": "真・革命", + "english": "True Revolution", + "notes": "Increases damage dealt against enemies higher leveled than you by up to 100%." + }, + { + "japanese": "白虎刃", + "english": "Byakko", + "stats": "STR+80", + "notes": "Chance to inflict both Blind and Sleep on Attacks/Crafts - 25%." + }, + { + "japanese": "真・白虎刃", + "english": "True Byakko", + "stats": "STR+160", + "notes": "Chance to inflict both Blind and Sleep on Attacks/Crafts - 30%." + }, + { + "japanese": "風魔", + "english": "Bluster", + "stats": "STR+30", + "notes": "Increases the amount of turns on an enemy's status effect by 1", + "arts": "Recuria" + }, + { + "japanese": "風神珠", + "english": "Aeolus Gem", + "stats": "HP+2400/ATS+60/ADF+60/MOV+6", + "notes": "Increases the amount of turns on an enemy's status effect by 1", + "arts": "Holy Breath" + }, + { + "japanese": "風神煌珠", + "english": "Shining Aeolus Gem", + "stats": "HP+4800/ATS+120/ADF+120/SPD+8/MOV+10", + "notes": "Increases the amount of turns on an enemy's status effect by 2", + "arts": "Holy Breath" + }, + { + "japanese": "雷神珠", + "english": "Zeus Gem", + "stats": "EP+120/Evasion+12%", + "arts": "Ixion Volt" + }, + { + "japanese": "雷神煌珠", + "english": "Shining Zeus Gem", + "stats": "EP+240/Evasion+20%", + "arts": "Ixion Volt" + }, + { + "japanese": "翠耀珠", + "english": "Emerald Gem", + "stats": "MOV+10/Evasion+20%" + }, + { + "japanese": "翠耀煌珠", + "english": "Shining Emerald Gem", + "stats": "MOV+12/Evasion+25%" + } + ], + "TIME": [ + { + "japanese": "ソウルブラー", + "english": "Soul Blur", + "stats": "Attack (Power C +): Single", + "notes": "Nightmare (50%)" + }, + { + "japanese": "カルバリーエッジ", + "english": "Calvary Edge", + "stats": "Attack (Power A +): Circle (M)", + "notes": "10% of damage is healed" + }, + { + "japanese": "ロスト・ジェネシス", + "english": "Lost Genesis", + "stats": "Attack (Power SSS): All", + "notes": "Delay+4, Deathblow (50%)" + }, + { + "japanese": "クロノドライブ", + "english": "Chrono Drive", + "stats": "Support: Circle (LL)", + "notes": "SPD/MOV Up (M)" + }, + { + "japanese": "クロノブレイク", + "english": "Chrono Break", + "stats": "Support: Circle (L)", + "notes": "SPD/MOV Down (M)" + }, + { + "japanese": "クロノバースト", + "english": "Chrono Burst", + "stats": "Support: Self", + "notes": "2 extra turns" + }, + { + "japanese": "行動力", + "english": "Action 1/2/3", + "stats": "SPD+4/8/16" + }, + { + "japanese": "駆動", + "english": "Cast 1/2/3", + "notes": "Arts Casting Time Reduced by 20/25/33%" + }, + { + "japanese": "悪夢の刃", + "english": "Nightmare 1/2/3/4", + "stats": "Increases Str by Rarity. 15/30/60/120", + "notes": "Chance to Nightmare on Attack/Craft - 10/15/20/30% - Scales by Rarity" + }, + { + "japanese": "破迅の牙 ", + "english": "Speed Breaker 1/2/3/4", + "stats": "Increases Str by Rarity. 15/30/60/120", + "notes": "Chance to inflict SPD down on Attack/Craft - 20/25/30/40% - Scales by Rarity" + }, + { + "japanese": "悪戯", + "english": "Prankster", + "stats": "HP+2000/STR+50", + "notes": "Always cook an unusual dish", + "arts": "Chrono Break" + }, + { + "japanese": "夜煌", + "english": "Nightgleam", + "stats": "EP+50", + "notes": "Increases the damage of your first casted art by 100%\r\nChance to Deathblow on Attack/Craft - 5%" + }, + { + "japanese": "冥皇", + "english": "Hades Gem", + "stats": "EP+100", + "notes": "Increases the damage of your first casted art by 100%\nChance to Deathblow on Attack/Craft - 10%" + }, + { + "japanese": "真・冥皇", + "english": "True Hades Gem", + "stats": "EP+200", + "notes": "Increases the damage of your first casted art by 150%,\nChance to Deathblow on Attack/Craft - 15%" + }, + { + "japanese": "黒言鈴", + "english": "Black Bell", + "stats": "ATS+40", + "notes": "Delay after casting Time arts is halved" + }, + { + "japanese": "刻界鈴", + "english": "Epoch Bell", + "stats": "ATS+80", + "notes": "Time arts damage+30%\nDelay after casting Time arts is halved", + "arts": "Cavalry Edge" + }, + { + "japanese": "真・刻界鈴", + "english": "True Epoch Bell", + "stats": "ATS+160", + "notes": "Time arts damage+40%\nDelay after casting Time arts is halved", + "arts": "Cavalry Edge" + }, + { + "japanese": "影輪牙", + "english": "Umbral Gyre", + "stats": "STR+80", + "notes": "Chance to inflict SPD/MOV down (S) on Attack/Craft - 40%" + }, + { + "japanese": "真・影輪牙", + "english": "True Umbral Gyre", + "stats": "STR+160", + "notes": "Chance to inflict SPD/MOV down (S) on Attack/Craft - 50%" + }, + { + "japanese": "韋駄天珠", + "english": "Skanda Gem", + "stats": "SPD+20", + "arts": "Chrono Drive, Chrono Break, Chrono Burst" + }, + { + "japanese": "韋駄天煌珠", + "english": "Shining Skanda Gem", + "stats": "SPD+30", + "arts": "Chrono Drive, Chrono Break, Chrono Burst" + }, + { + "japanese": "魔王珠", + "english": "Diabolos Gem", + "stats": "ATS+100", + "notes": "Arts Casting Time Reduced by 50%", + "arts": "Lost Genesis" + }, + { + "japanese": "魔王煌珠", + "english": "Shining Diabolos Gem", + "stats": "ATS+200", + "notes": "Arts Casting Time Reduced by 60%", + "arts": "Lost Genesis" + }, + { + "japanese": "黒耀珠", + "english": "Onyx Gem", + "stats": "SPD+25" + }, + { + "japanese": "黒耀煌珠", + "english": "Shining Onyx Gem", + "stats": "SPD+35" + }, + { + "japanese": "狂骨", + "english": "Kyoukotsu", + "stats": "SPD +30", + "notes": "Increases Arts damage dealt by 25%, but reduces the radius of the Art." + } + ], + "SPACE": [ + { + "japanese": "ゴルトスフィア", + "english": "Golden Sphere", + "stats": "Attack (Power C +): Circle (M)" + }, + { + "japanese": "エクスクルセイド", + "english": "Cross Crusade", + "stats": "Attack (Power S): Circle (LL)" + }, + { + "japanese": "セヴンス・キャリバー", + "english": "Seventh Caliber", + "stats": "Attack (Power SSS): All" + }, + { + "japanese": "フォルトゥナ", + "english": "Fortuna", + "stats": "Support: Circle (LL)" + }, + { + "japanese": "シャイニング", + "english": "Shining", + "stats": "Support: Circle (M)" + }, + { + "japanese": "セラフィムリング", + "english": "Seraphim Ring", + "stats": "Recovery: All", + "notes": "Revive and HP large recovery\nCures All Abnormal Status" + }, + { + "japanese": "省EP", + "english": "EP Cut 1/2/3", + "notes": "EP Consumption reduced by 10/20/30% " + }, + { + "japanese": "命中", + "english": "Hit 1/2/3", + "stats": "50/75/100% Hit, 1/2/3% Critical" + }, + { + "japanese": "妨害", + "english": "Impede 1/2/3", + "stats": "Increases Str by Rarity. 10/20/30", + "notes": "Attacks and Crafts Increase Enemy Delay by +1/2/3\nChance to Impede on Attack/Craft - 30/60/90%" + }, + { + "japanese": "気絶の刃", + "english": "Faint 1/2/3/4", + "stats": "Increases Str by Rarity. 15/30/60/120", + "notes": "Chance to Faint on Attack/Craft - 10/15/20/30% - Scales by Rarity" + }, + { + "japanese": "孤剣", + "english": "Lone Blade", + "stats": "HP+1000", + "notes": "Increases the damage of your first normal attack/craft by 50%\nOne turn of Balance Down on the enemy (10%)." + }, + { + "japanese": "覇道", + "english": "Domination", + "stats": "HP+2000", + "notes": "Increases the damage of your first normal attack/craft by 100%\nOne turn of Balance Down on the enemy (10%)." + }, + { + "japanese": "真・覇道", + "english": "True Domination", + "stats": "HP+4000", + "notes": "Increases the damage of your first normal attack/craft by 150%\nOne turn of Balance Down on the enemy (10%)." + }, + { + "japanese": "幸運", + "english": "Luck", + "stats": "HP+500/EP+50/DEF+50/ADF+50/Evasion+25%", + "notes": "Increases Item Drop Rate by 50% (Equipment Only)", + "arts": "Fortuna" + }, + { + "japanese": "熾天使", + "english": "Seraph", + "stats": "HP+1000/EP+100/DEF+100/ADF+100/Hit+50%", + "notes": "Increases Item Drop Rate by 50% (Equipment Only)", + "arts": "Fortuna, Shining, Seraphim Ring" + }, + { + "japanese": "真・熾天使", + "english": "True Seraph", + "stats": "HP+2000/EP+200/DEF+200/ADF+200/Hit+100%", + "notes": "Increases Item Drop Rate by 75% (Equipment Only)", + "arts": "Fortuna, Shining, Seraphim Ring" + }, + { + "japanese": "金言鈴", + "english": "Golden Bell", + "stats": "ATS+40", + "notes": "Delay after casting Space arts is halved" + }, + { + "japanese": "聖界鈴", + "english": "Holy Bell", + "stats": "ATS+80", + "notes": "Space arts damage+30%\nDelay after casting Space arts is halved", + "arts": "Cross Crusade" + }, + { + "japanese": "真・聖界鈴", + "english": "True Holy Bell", + "stats": "ATS+160", + "notes": "Space arts damage+40%\nDelay after casting Space arts is halved", + "arts": "Cross Crusade" + }, + { + "japanese": "日輪牙", + "english": "Solar Gyre", + "stats": "STR+80", + "notes": "Chance to inflict STR/DEF down (S) on Attack/Craft - 40%" + }, + { + "japanese": "真・日輪牙", + "english": "True Solar Gyre", + "stats": "STR+160", + "notes": "Chance to inflict STR/DEF down (S) on Attack/Craft - 50%" + }, + { + "japanese": "天帝珠", + "english": "Deus Gem", + "stats": "EP+200/ATS+50/ADF+50", + "notes": "EP Consumption reduced by 40%" + }, + { + "japanese": "天帝煌珠", + "english": "Shining Deus Gem", + "stats": "EP+400/ATS+100/ADF+100", + "notes": "EP Consumption reduced by 50%" + }, + { + "japanese": "七剣珠", + "english": "Sevenfold Gem", + "stats": "HP+2000/STR+50/DEF+50", + "notes": "Attacks and Crafts Increase Enemy Delay by +4\nChance to Impede on Attack/Craft - 100%", + "arts": "Seventh Caliber" + }, + { + "japanese": "七剣煌珠", + "english": "Shining Sevenfold Gem", + "stats": "HP+4000/STR+100/DEF+100", + "notes": "Attacks and Crafts Increase Enemy Delay by +6\nChance to Impede on Attack/Craft - 100%", + "arts": "Seventh Caliber" + }, + { + "japanese": "金耀珠", + "english": "Gold Gem", + "stats": "Hit 100%, Critical 9%" + }, + { + "japanese": "金耀煌珠", + "english": "Shining Gold Gem", + "stats": "Hit 100%, Critical 12%" + }, + { + "japanese": "龍虎", + "english": "Dragon and Tiger", + "stats": "Hit 100%, Critical 10%", + "notes": "Increases Craft damage dealt by 25%, but reduces the radius of the Craft." + } + ], + "MIRAGE": [ + { + "japanese": "アナライズ ", + "english": "Analyze", + "stats": "Single", + "notes": "Analyze target" + }, + { + "japanese": "シルバーソーン", + "english": "Silver Thorn", + "stats": "Attack (Power C +) Circle (M)", + "notes": "Confuse (60%)" + }, + { + "japanese": "ガリオンフォート\t", + "english": "Garion Fort", + "stats": "Attack (Power A+): Straight line (L)", + "notes": "4 Turns Random Stat Down (L)" + }, + { + "japanese": "アルビオン・ヴォルフ", + "english": "Albion Wolf", + "stats": "Attack (Power SSS): All", + "notes": "Inflicts ALL CANCEL" + }, + { + "japanese": "セイントフォース", + "english": "Saintly Force", + "stats": "Support: Single", + "notes": "4 Turns STR/ATS Up (L)" + }, + { + "japanese": "クレセントミラー", + "english": "Crescent Mirror", + "stats": "Support: All", + "notes": "4 Turns DEF/ADF Up (L)\nMagic Reflect" + }, + { + "japanese": "EP", + "english": "EP1/2/3", + "stats": "EP+150/300/600" + }, + { + "japanese": "精神", + "english": "Spirit 1/2/3", + "stats": "ATS+25/50/100" + }, + { + "japanese": "混乱の刃", + "english": "Confuse 1/2/3/4", + "stats": "Increases Str by Rarity. 15/30/60/120", + "notes": "Chance to Confuse on Attack/Craft - 10/15/20/30% - Scales by Rarity" + }, + { + "japanese": "破言の牙", + "english": "Voice Breaker 1/2/3/4", + "stats": "Increases Str by Rarity. 15/30/60/120", + "notes": "Chance to inflict ATS down on Attack/Craft - 20/25/30/40% - Scales by Rarity" + }, + { + "japanese": "月鏡", + "english": "Moon Lens", + "stats": "EP+50, ATS+20", + "notes": "View info on enemies not yet analyzed\nUndiscovered Chests appear on map" + }, + { + "japanese": "八咫鏡", + "english": "Eight-Hand Mirror", + "stats": "EP+100, ATS+40", + "notes": "View info on enemies not yet analyzed\nUndiscovered Chests appear on map", + "arts": "Silver Thorn, Analyze" + }, + { + "japanese": "真・八咫鏡", + "english": "True Eight-Hand Mirror", + "stats": "EP+200, ATS+80", + "notes": "View info on enemies not yet analyzed\nUndiscovered Chests appear on map", + "arts": "Silver Thorn, Analyze" + }, + { + "japanese": "銀言鈴", + "english": "Silver Bell", + "stats": "ATS+40", + "notes": "Delay after casting Mirage arts is halved" + }, + { + "japanese": "幽界鈴", + "english": "Astral Bell", + "stats": "ATS+80", + "notes": "Mirage arts damage+30%\nDelay after casting Mirage arts is halved" + }, + { + "japanese": "真・幽界鈴", + "english": "True Astral Bell", + "stats": "ATS+160", + "notes": "Mirage arts damage+40%\nDelay after casting Mirage arts is halved" + }, + { + "japanese": "玉藻", + "english": "Tamamo Gem", + "stats": "STR+80", + "notes": "Chance to inflict Charm on Attack/Craft - 25%" + }, + { + "japanese": "真・玉藻", + "english": "True Tamamo Gem", + "stats": "STR+160", + "notes": "Chance to inflict Charm on Attack/Craft - 50%" + }, + { + "japanese": "月輪牙", + "english": "Lunar Gyre", + "stats": "STR+80", + "notes": "Chance to Inflict ATS/ADF (S) Down on Attack/Craft - 40%" + }, + { + "japanese": "真・月輪牙", + "english": "True Lunar Gyre", + "stats": "STR+160", + "notes": "Chance to Inflict ATS/ADF (S) Down on Attack/Craft - 50%" + }, + { + "japanese": "虎威", + "english": "Intimidation", + "stats": "EP+100/ATS+50", + "notes": "Enemies are less likely to chase you" + }, + { + "japanese": "幻狼珠", + "english": "Fenrir Gem", + "stats": "EP+200/ATS+100", + "notes": "Enemies are less likely to chase you", + "arts": "Albion Wolf" + }, + { + "japanese": "幻狼煌珠", + "english": "Shining Fenrir Gem", + "stats": "EP+400/ATS+200", + "notes": "Enemies are less likely to chase you", + "arts": "Albion Wolf" + }, + { + "japanese": "龍眼", + "english": "Dragon Vision", + "stats": "STR+40/ATS+40", + "notes": "Automatically analyzes an enemy defeated by quartz user" + }, + { + "japanese": "賢王珠", + "english": "Odin Gem", + "stats": "STR+80/ATS+80", + "arts": "Saintly Force, Crescent Mirror" + }, + { + "japanese": "賢王煌珠", + "english": "Shining Odin Gem", + "stats": "STR+160/ATS+160", + "arts": "Saintly Force, Crescent Mirror" + }, + { + "japanese": "銀耀珠", + "english": "Mirage Gem", + "stats": "ATS+200" + }, + { + "japanese": "銀耀煌珠", + "english": "Shining Mirage Gem", + "stats": "ATS+400" + } + ], + "LOST": [ + { + "japanese": "グラール セラス", + "english": "Grail Thelas", + "stats": "HP+1000, SPD+10, MOV+10, Hit Accuracy +100%", + "notes": "Raises party from K.O.status and recovers 200% HP (past Max HP if full)." + }, + { + "japanese": "アイシクル メテオ ", + "english": "Icicle Meteo", + "stats": "HP+1000, EP+100, DEF & ADF+100", + "notes": "(4S damage) 4 turn stats down for all enemies hit." + }, + { + "japanese": "プロミネンス ロア ", + "english": "Prominence Roar", + "stats": "STR & DEF+100, MOV+10, Hit Accuracy +100%", + "notes": "(4S damage) 200% chance to Burn, retracts any STAT UP from all enemies hit." + }, + { + "japanese": "リアノーン・キス ", + "english": "Leanon Kiss", + "stats": "EP +100, ATS&ADF+100, Evasion +10%", + "notes": "200% Fascination to enemies, CP+100 and STR/DEF/ATS/ADF/SPD up Large for all party members." + }, + { + "japanese": "ロード・レグナリオン ", + "english": "Lord Regnarion", + "stats": "STR & ATS+100, SPD+10, Evasion +10%", + "notes": "(5S damage, Break SS)" + } + ] +} \ No newline at end of file diff --git a/src/index.js b/src/index.js index b89a9c9..758638d 100644 --- a/src/index.js +++ b/src/index.js @@ -5,15 +5,16 @@ import registerKeyHandlers from "./keyboard.js"; document.getElementById("controls").style.display = "none"; document.getElementById("updating").style.display = "none"; +document.getElementById("combat-overlay").addEventListener("change", (evt) => { + window.api.openCombatOverlay(evt.target.value); + evt.target.value = ""; +}); + if (window.api.getPlatform() === "darwin") { document.getElementById("name").classList.add("textStroke"); document.getElementById("text-en").classList.add("textStroke"); } -document.getElementById("test").addEventListener("click", () => { - window.api.openCombatOverlay("crafts"); -}); - registerButtonHandlers({ cross: advanceText, l2: backwardText,