diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex.ts" new file mode 100644 index 0000000000..78c9e67e16 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex.ts" @@ -0,0 +1,41 @@ +import { Set } from '../../interfaces' +import serie from '../Pokémon TCG Pocket' + +const set: Set = { + id: "A4b", + + name: { + // de: "Hüter des Firmaments", + en: "Deluxe Pack: ex", + // es: "Guardianes Celestiales", + // fr: "Gardiens Astraux", + // it: "Guardiani Astrali", + // 'pt-br': "Guardiões Celestiais", + // ko: '쌍천의 수호자', + ja: 'ハイクラスパックex' + }, + + serie: serie, + + cardCount: { + official: 353 + }, + + boosters: { + deluxe_pack_ex: { + name: { + // de: "Solgaleo", + en: 'Delux Pack EX', + // fr: 'Solgaleo', + // es: 'Solgaleo', + // it: 'Solgaleo', + // 'pt-br': 'Solgaleo', + // ko: '솔가레오' + } + } + }, + + releaseDate: "2025-09-30" +} + +export default set diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/001.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/001.ts" new file mode 100644 index 0000000000..e73318b442 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/001.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Bulbasaur" + }, + + illustrator: "Narumi Sato", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + en: "There is a plant seed on its back right from the\nday this Pokémon is born. The seed slowly\ngrows larger." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Vine Whip" + }, + + damage: 40, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/002.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/002.ts" new file mode 100644 index 0000000000..e73318b442 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/002.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Bulbasaur" + }, + + illustrator: "Narumi Sato", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + en: "There is a plant seed on its back right from the\nday this Pokémon is born. The seed slowly\ngrows larger." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Vine Whip" + }, + + damage: 40, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/003.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/003.ts" new file mode 100644 index 0000000000..413368d64e --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/003.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Ivysaur" + }, + + illustrator: "Kurata So", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + evolveFrom: { + en: "Bulbasaur" + }, + + description: { + en: "When the bulb on its back grows large, it\nappears to lose the ability to stand on its\nhind legs." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Razor Leaf" + }, + + damage: 60, + cost: ["Grass", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/004.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/004.ts" new file mode 100644 index 0000000000..413368d64e --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/004.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Ivysaur" + }, + + illustrator: "Kurata So", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + evolveFrom: { + en: "Bulbasaur" + }, + + description: { + en: "When the bulb on its back grows large, it\nappears to lose the ability to stand on its\nhind legs." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Razor Leaf" + }, + + damage: 60, + cost: ["Grass", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/005.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/005.ts" new file mode 100644 index 0000000000..125ef338e3 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/005.ts" @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Venusaur ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 190, + types: ["Grass"], + + evolveFrom: { + en: "Ivysaur" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Razor Leaf" + }, + + damage: 60, + cost: ["Grass", "Colorless", "Colorless"] + }, { + name: { + en: "Giant Bloom" + }, + + damage: 100, + cost: ["Grass", "Grass", "Colorless", "Colorless"], + + effect: { + en: "Heal 30 damage from this Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/007.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/007.ts" new file mode 100644 index 0000000000..7fc57caf50 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/007.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Weedle" + }, + + illustrator: "Akira Komayama", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Grass"], + + description: { + en: "Often found in forests and grasslands.\nIt has a sharp, toxic barb of around two inches\non top of its head." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Multiply" + }, + + cost: ["Grass"], + + effect: { + en: "Put 1 random Weedle from your deck onto your Bench." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/008.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/008.ts" new file mode 100644 index 0000000000..81b6db8dc3 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/008.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Kakuna" + }, + + illustrator: "Yuka Morii", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + evolveFrom: { + en: "Weedle" + }, + + description: { + en: "Almost incapable of moving, this Pokémon can only\nharden its shell to protect itself when it is\nin danger." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "String Shot" + }, + + damage: 20, + cost: ["Grass"], + + effect: { + en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/009.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/009.ts" new file mode 100644 index 0000000000..81b6db8dc3 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/009.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Kakuna" + }, + + illustrator: "Yuka Morii", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + evolveFrom: { + en: "Weedle" + }, + + description: { + en: "Almost incapable of moving, this Pokémon can only\nharden its shell to protect itself when it is\nin danger." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "String Shot" + }, + + damage: 20, + cost: ["Grass"], + + effect: { + en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/010.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/010.ts" new file mode 100644 index 0000000000..afa319065e --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/010.ts" @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Beedrill ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Four Diamond", + category: "Pokemon", + hp: 170, + types: ["Grass"], + + evolveFrom: { + en: "Kakuna" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Crushing Spear" + }, + + damage: 80, + cost: ["Grass", "Grass"], + + effect: { + en: "Discard a random Energy from your opponent's Active Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/011.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/011.ts" new file mode 100644 index 0000000000..42b288e8ed --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/011.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Exeggcute" + }, + + illustrator: "kawayoo", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Grass"], + + description: { + en: "Though it may look like it's just a bunch of eggs,\nit's a proper Pokémon. Exeggcute communicates\nwith others of its kind via telepathy, apparently." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Seed Bomb" + }, + + damage: 20, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/012.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/012.ts" new file mode 100644 index 0000000000..42b288e8ed --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/012.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Exeggcute" + }, + + illustrator: "kawayoo", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Grass"], + + description: { + en: "Though it may look like it's just a bunch of eggs,\nit's a proper Pokémon. Exeggcute communicates\nwith others of its kind via telepathy, apparently." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Seed Bomb" + }, + + damage: 20, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/014.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/014.ts" new file mode 100644 index 0000000000..e6eda972d2 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/014.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Hoppip" + }, + + illustrator: "Mékayu", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Grass"], + + description: { + en: "Outside of cold regions, Hoppip can be found\npractically everywhere. This is because the wind\ncarries this species all over the world." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tackle" + }, + + damage: 20, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/015.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/015.ts" new file mode 100644 index 0000000000..e6eda972d2 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/015.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Hoppip" + }, + + illustrator: "Mékayu", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Grass"], + + description: { + en: "Outside of cold regions, Hoppip can be found\npractically everywhere. This is because the wind\ncarries this species all over the world." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tackle" + }, + + damage: 20, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/017.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/017.ts" new file mode 100644 index 0000000000..989c832773 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/017.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Skiploom" + }, + + illustrator: "Kyoko Umemoto", + rarity: "Two Diamond", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + evolveFrom: { + en: "Hoppip" + }, + + description: { + en: "Skiploom enthusiasts can apparently tell where a\nSkiploom was born by the scent drifting from the\nflower on the Pokémon's head." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Seed Bomb" + }, + + damage: 40, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/019.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/019.ts" new file mode 100644 index 0000000000..aa237fc100 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/019.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Jumpluff" + }, + + illustrator: "Kagemaru Himeno", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Grass"], + + evolveFrom: { + en: "Skiploom" + }, + + description: { + en: "Jumpluff travels on seasonal winds. Once its\ncotton spores run out, its journey ends, as does\nits life." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Fluffy Flight" + }, + + effect: { + en: "Your Active Pokémon has no Retreat Cost." + } + }], + + attacks: [{ + name: { + en: "Spinning Attack" + }, + + damage: 60, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/021.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/021.ts" new file mode 100644 index 0000000000..8525c419d9 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/021.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Yanma" + }, + + illustrator: "Eri Yamaki", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Grass"], + + description: { + en: "Its eyes can see 360 degrees without moving its\nhead. It won't miss prey—even those behind it." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Flap" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/022.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/022.ts" new file mode 100644 index 0000000000..0dd45a954e --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/022.ts" @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Yanmega ex" + }, + + illustrator: "PLANETA Tsuji", + rarity: "Four Diamond", + category: "Pokemon", + hp: 140, + types: ["Grass"], + + evolveFrom: { + en: "Yanma" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Air Slash" + }, + + damage: 120, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "Discard a random Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/023.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/023.ts" new file mode 100644 index 0000000000..3535491fc1 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/023.ts" @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Shuckle ex" + }, + + illustrator: "PLANETA Mochizuki", + rarity: "Four Diamond", + category: "Pokemon", + hp: 120, + types: ["Grass"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Solid Shell" + }, + + effect: { + en: "This Pokémon takes −20 damage from attacks." + } + }], + + attacks: [{ + name: { + en: "Triple Slap" + }, + + damage: 20, + cost: ["Grass"], + + effect: { + en: "Flip 3 coins. This attack does 20 damage for each heads." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/026.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/026.ts" new file mode 100644 index 0000000000..40de0ade82 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/026.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Cherubi" + }, + + illustrator: "Saya Tsuruta", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Grass"], + + description: { + en: "It nimbly dashes about to avoid getting pecked\nby bird Pokémon that would love to make off\nwith its small, nutrient-rich storage ball." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "En-fruits-iastic" + }, + + effect: { + en: "If this Pokémon has a Pokémon Tool attached, attacks used by this Pokémon cost 1 less {G} Energy." + } + }], + + attacks: [{ + name: { + en: "Sweets Relay" + }, + + damage: 10, + cost: ["Grass"], + + effect: { + en: "If 1 of your Pokémon used Sweets Relay during your last turn, this attack does 20 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/027.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/027.ts" new file mode 100644 index 0000000000..d9c52ec2df --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/027.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Cherrim" + }, + + illustrator: "Atsuko Nishida", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + evolveFrom: { + en: "Cherubi" + }, + + description: { + en: "After absorbing plenty of sunlight, Cherrim takes\nthis form. It's full of energy while it's like this,\nand its liveliness will go on until sundown." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Seed Bomb" + }, + + damage: 40, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/028.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/028.ts" new file mode 100644 index 0000000000..d9c52ec2df --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/028.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Cherrim" + }, + + illustrator: "Atsuko Nishida", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + evolveFrom: { + en: "Cherubi" + }, + + description: { + en: "After absorbing plenty of sunlight, Cherrim takes\nthis form. It's full of energy while it's like this,\nand its liveliness will go on until sundown." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Seed Bomb" + }, + + damage: 40, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/030.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/030.ts" new file mode 100644 index 0000000000..76fceb018d --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/030.ts" @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Shaymin" + }, + + illustrator: "Narumi Sato", + rarity: "Three Diamond", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + en: "It can dissolve toxins in the air to instantly\ntransform ruined land into a lush field of flowers." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Fragrant Flower Garden" + }, + + effect: { + en: "Once during your turn, you may heal 10 damage from each of your Pokémon." + } + }], + + attacks: [{ + name: { + en: "Flop" + }, + + damage: 30, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/031.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/031.ts" new file mode 100644 index 0000000000..76fceb018d --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/031.ts" @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Shaymin" + }, + + illustrator: "Narumi Sato", + rarity: "Three Diamond", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + en: "It can dissolve toxins in the air to instantly\ntransform ruined land into a lush field of flowers." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Fragrant Flower Garden" + }, + + effect: { + en: "Once during your turn, you may heal 10 damage from each of your Pokémon." + } + }], + + attacks: [{ + name: { + en: "Flop" + }, + + damage: 30, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/032.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/032.ts" new file mode 100644 index 0000000000..11abdde6b3 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/032.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Snivy" + }, + + illustrator: "Kagemaru Himeno", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + en: "Being exposed to sunlight makes its movements\nswifter. It uses vines more adeptly than its hands." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Vine Whip" + }, + + damage: 40, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/033.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/033.ts" new file mode 100644 index 0000000000..11abdde6b3 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/033.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Snivy" + }, + + illustrator: "Kagemaru Himeno", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + en: "Being exposed to sunlight makes its movements\nswifter. It uses vines more adeptly than its hands." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Vine Whip" + }, + + damage: 40, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/035.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/035.ts" new file mode 100644 index 0000000000..9773cb8df2 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/035.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Servine" + }, + + illustrator: "Shigenori Negishi", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + evolveFrom: { + en: "Snivy" + }, + + description: { + en: "It moves along the ground as if sliding. Its swift\nmovements befuddle its foes, and it then attacks\nwith a vine whip." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Vine Whip" + }, + + damage: 50, + cost: ["Grass", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/036.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/036.ts" new file mode 100644 index 0000000000..70794f0666 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/036.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Serperior" + }, + + illustrator: "Yoshioka", + rarity: "Three Diamond", + category: "Pokemon", + hp: 110, + types: ["Grass"], + + evolveFrom: { + en: "Servine" + }, + + description: { + en: "It only gives its all against strong opponents who\nare not fazed by the glare from Serperior's\nnoble eyes." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Jungle Totem" + }, + + effect: { + en: "Each {G} Energy attached to your {G} Pokémon provides 2 {G} Energy. This effect doesn't stack." + } + }], + + attacks: [{ + name: { + en: "Solar Beam" + }, + + damage: 70, + cost: ["Grass", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/037.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/037.ts" new file mode 100644 index 0000000000..70794f0666 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/037.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Serperior" + }, + + illustrator: "Yoshioka", + rarity: "Three Diamond", + category: "Pokemon", + hp: 110, + types: ["Grass"], + + evolveFrom: { + en: "Servine" + }, + + description: { + en: "It only gives its all against strong opponents who\nare not fazed by the glare from Serperior's\nnoble eyes." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Jungle Totem" + }, + + effect: { + en: "Each {G} Energy attached to your {G} Pokémon provides 2 {G} Energy. This effect doesn't stack." + } + }], + + attacks: [{ + name: { + en: "Solar Beam" + }, + + damage: 70, + cost: ["Grass", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/039.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/039.ts" new file mode 100644 index 0000000000..cc3dfb6001 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/039.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Rowlet" + }, + + illustrator: "Saya Tsuruta", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + en: "It sends its feathers, which are as sharp\nas blades, flying in attack. Its legs are strong,\nso its kicks are also formidable." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Skill Dive" + }, + + cost: ["Grass"], + + effect: { + en: "This attack does 10 damage to 1 of your opponent's Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/041.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/041.ts" new file mode 100644 index 0000000000..23ffe85706 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/041.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Dartrix" + }, + + illustrator: "Mizue", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + evolveFrom: { + en: "Rowlet" + }, + + description: { + en: "This narcissistic Pokémon is a clean freak. If you\ndon't groom it diligently, it may stop listening to you." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Razor Wing" + }, + + damage: 30, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/044.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/044.ts" new file mode 100644 index 0000000000..d0febddc0d --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/044.ts" @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Buzzwole ex" + }, + + illustrator: "PLANETA Mochizuki", + rarity: "Four Diamond", + category: "Pokemon", + hp: 140, + types: ["Grass"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Punch" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }, { + name: { + en: "Big Beat" + }, + + damage: 120, + cost: ["Grass", "Grass", "Colorless"], + + effect: { + en: "During your next turn, this Pokémon can't use Big Beat." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/045.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/045.ts" new file mode 100644 index 0000000000..8cae627970 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/045.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Pheromosa" + }, + + illustrator: "Shin Nagasawa", + rarity: "Two Diamond", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + en: "A life-form that lives in another world, its body\nis thin and supple, but it also possesses\ngreat power." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Jump Blues" + }, + + damage: 20, + cost: ["Grass"], + + effect: { + en: "This attack also does 20 damage to 1 of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/046.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/046.ts" new file mode 100644 index 0000000000..8cae627970 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/046.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Pheromosa" + }, + + illustrator: "Shin Nagasawa", + rarity: "Two Diamond", + category: "Pokemon", + hp: 70, + types: ["Grass"], + + description: { + en: "A life-form that lives in another world, its body\nis thin and supple, but it also possesses\ngreat power." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Jump Blues" + }, + + damage: 20, + cost: ["Grass"], + + effect: { + en: "This attack also does 20 damage to 1 of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/047.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/047.ts" new file mode 100644 index 0000000000..50dca9da1c --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/047.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Kartana" + }, + + illustrator: "nagimiso", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + en: "This Ultra Beast's body, which is as thin\nas paper, is like a sharpened sword." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Thrash Metal" + }, + + damage: 40, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/048.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/048.ts" new file mode 100644 index 0000000000..50dca9da1c --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/048.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Kartana" + }, + + illustrator: "nagimiso", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + en: "This Ultra Beast's body, which is as thin\nas paper, is like a sharpened sword." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Thrash Metal" + }, + + damage: 40, + cost: ["Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/050.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/050.ts" new file mode 100644 index 0000000000..073ef44834 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/050.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Sprigatito" + }, + + illustrator: "mashu", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Grass"], + + description: { + en: "Its fluffy fur is similar in composition to plants.\nThis Pokémon frequently washes its face to keep\nit from drying out." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Cry for Help" + }, + + cost: ["Grass"], + + effect: { + en: "Put 1 random {G} Pokémon from your deck into your hand." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/051.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/051.ts" new file mode 100644 index 0000000000..edc12e81ff --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/051.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Floragato" + }, + + illustrator: "mashu", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + evolveFrom: { + en: "Sprigatito" + }, + + description: { + en: "Floragato deftly wields the vine hidden beneath\nits long fur, slamming the hard flower bud against\nits opponents." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Slash" + }, + + damage: 40, + cost: ["Grass", "Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/052.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/052.ts" new file mode 100644 index 0000000000..edc12e81ff --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/052.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Floragato" + }, + + illustrator: "mashu", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + evolveFrom: { + en: "Sprigatito" + }, + + description: { + en: "Floragato deftly wields the vine hidden beneath\nits long fur, slamming the hard flower bud against\nits opponents." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Slash" + }, + + damage: 40, + cost: ["Grass", "Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/054.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/054.ts" new file mode 100644 index 0000000000..805c67a8a7 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/054.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Meowscarada" + }, + + illustrator: "mashu", + rarity: "Three Diamond", + category: "Pokemon", + hp: 140, + types: ["Grass"], + + evolveFrom: { + en: "Floragato" + }, + + description: { + en: "This Pokémon uses the reflective fur lining its\ncape to camouflage the stem of its flower,\ncreating the illusion that the flower is floating." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Fighting Claws" + }, + + damage: 60, + cost: ["Grass", "Grass"], + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon ex, this attack does 70 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/055.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/055.ts" new file mode 100644 index 0000000000..0e5f358c09 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/055.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Charmander" + }, + + illustrator: "Teeziro", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + en: "It has a preference for hot things. When it rains,\nsteam is said to spout from the tip of its tail." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Ember" + }, + + damage: 30, + cost: ["Fire"], + + effect: { + en: "Discard a {R} Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/056.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/056.ts" new file mode 100644 index 0000000000..0e5f358c09 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/056.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Charmander" + }, + + illustrator: "Teeziro", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + en: "It has a preference for hot things. When it rains,\nsteam is said to spout from the tip of its tail." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Ember" + }, + + damage: 30, + cost: ["Fire"], + + effect: { + en: "Discard a {R} Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/058.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/058.ts" new file mode 100644 index 0000000000..5fee2706b5 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/058.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Charmeleon" + }, + + illustrator: "kantaro", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Fire"], + + evolveFrom: { + en: "Charmander" + }, + + description: { + en: "It has a barbaric nature. In battle, it whips its\nfiery tail around and slashes away with sharp claws." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Fire Claws" + }, + + damage: 60, + cost: ["Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/059.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/059.ts" new file mode 100644 index 0000000000..0734bacc86 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/059.ts" @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Charizard ex" + }, + + illustrator: "PLANETA Mochizuki", + rarity: "Four Diamond", + category: "Pokemon", + hp: 180, + types: ["Fire"], + + evolveFrom: { + en: "Charmeleon" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Slash" + }, + + damage: 60, + cost: ["Fire", "Colorless", "Colorless"] + }, { + name: { + en: "Crimson Storm" + }, + + damage: 200, + cost: ["Fire", "Fire", "Colorless", "Colorless"], + + effect: { + en: "Discard 2 {R} Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/060.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/060.ts" new file mode 100644 index 0000000000..ddd535fb90 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/060.ts" @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Charizard ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Four Diamond", + category: "Pokemon", + hp: 180, + types: ["Fire"], + + evolveFrom: { + en: "Charmeleon" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Stoke" + }, + + cost: ["Fire"], + + effect: { + en: "Take 3 {R} Energy from your Energy Zone and attach it to this Pokémon." + } + }, { + name: { + en: "Steam Artillery" + }, + + damage: 150, + cost: ["Fire", "Fire", "Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/061.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/061.ts" new file mode 100644 index 0000000000..b7e6d3c570 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/061.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Growlithe" + }, + + illustrator: "Mizue", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + en: "It has a brave and trustworthy nature. It fearlessly\nstands up to bigger and stronger foes." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Bite" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/062.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/062.ts" new file mode 100644 index 0000000000..b7e6d3c570 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/062.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Growlithe" + }, + + illustrator: "Mizue", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + en: "It has a brave and trustworthy nature. It fearlessly\nstands up to bigger and stronger foes." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Bite" + }, + + damage: 20, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/064.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/064.ts" new file mode 100644 index 0000000000..6609aefc21 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/064.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Flareon" + }, + + illustrator: "Eri Yamaki", + rarity: "Three Diamond", + category: "Pokemon", + hp: 110, + types: ["Fire"], + + evolveFrom: { + en: "Eevee" + }, + + description: { + en: "Inhaled air is carried to its flame sac, heated,\nand exhaled as fire that reaches over 3,000\ndegrees Fahrenheit." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Assisting Heater" + }, + + damage: 40, + cost: ["Fire", "Colorless"], + + effect: { + en: "Take a {R} Energy from your Energy Zone and attach it to 1 of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/065.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/065.ts" new file mode 100644 index 0000000000..6609aefc21 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/065.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Flareon" + }, + + illustrator: "Eri Yamaki", + rarity: "Three Diamond", + category: "Pokemon", + hp: 110, + types: ["Fire"], + + evolveFrom: { + en: "Eevee" + }, + + description: { + en: "Inhaled air is carried to its flame sac, heated,\nand exhaled as fire that reaches over 3,000\ndegrees Fahrenheit." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Assisting Heater" + }, + + damage: 40, + cost: ["Fire", "Colorless"], + + effect: { + en: "Take a {R} Energy from your Energy Zone and attach it to 1 of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/067.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/067.ts" new file mode 100644 index 0000000000..ba72cf0a60 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/067.ts" @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Moltres ex" + }, + + illustrator: "PLANETA Tsuji", + rarity: "Four Diamond", + category: "Pokemon", + hp: 140, + types: ["Fire"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Inferno Dance" + }, + + cost: ["Fire"], + + effect: { + en: "Flip 3 coins. Take an amount of {R} Energy from your Energy Zone equal to the number of heads and attach it to your Benched {R} Pokémon in any way you like." + } + }, { + name: { + en: "Heat Blast" + }, + + damage: 70, + cost: ["Fire", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/070.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/070.ts" new file mode 100644 index 0000000000..88de923b33 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/070.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Torkoal" + }, + + illustrator: "sui", + rarity: "One Diamond", + category: "Pokemon", + hp: 100, + types: ["Fire"], + + description: { + en: "It burns coal inside its shell for energy. It blows\nout black soot if it is endangered." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Flamethrower" + }, + + damage: 70, + cost: ["Fire", "Fire"], + + effect: { + en: "Discard a {R} Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/071.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/071.ts" new file mode 100644 index 0000000000..e00cecac28 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/071.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Chimchar" + }, + + illustrator: "Kagemaru Himeno", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + en: "Its fiery rear end is fueled by gas made in its belly.\nEven rain can't extinguish the fire." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Scratch" + }, + + damage: 20, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/072.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/072.ts" new file mode 100644 index 0000000000..e00cecac28 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/072.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Chimchar" + }, + + illustrator: "Kagemaru Himeno", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + en: "Its fiery rear end is fueled by gas made in its belly.\nEven rain can't extinguish the fire." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Scratch" + }, + + damage: 20, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/073.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/073.ts" new file mode 100644 index 0000000000..d82e6a46a7 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/073.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Monferno" + }, + + illustrator: "Masakazu Fukuda", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Fire"], + + evolveFrom: { + en: "Chimchar" + }, + + description: { + en: "It skillfully controls the intensity of the fire on its\ntail to keep its foes at an ideal distance." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Fiery Punch" + }, + + damage: 30, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/074.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/074.ts" new file mode 100644 index 0000000000..d82e6a46a7 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/074.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Monferno" + }, + + illustrator: "Masakazu Fukuda", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Fire"], + + evolveFrom: { + en: "Chimchar" + }, + + description: { + en: "It skillfully controls the intensity of the fire on its\ntail to keep its foes at an ideal distance." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Fiery Punch" + }, + + damage: 30, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/076.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/076.ts" new file mode 100644 index 0000000000..378e2fbd68 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/076.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Heatran" + }, + + illustrator: "Kazumasa Yasukuni", + rarity: "Three Diamond", + category: "Pokemon", + hp: 110, + types: ["Fire"], + + description: { + en: "It dwells in volcanic caves. It digs in with its\ncross-shaped feet to crawl on ceilings and walls." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Speed Link" + }, + + effect: { + en: "If you have Arceus or Arceus ex in play, this Pokémon has no Retreat Cost." + } + }], + + attacks: [{ + name: { + en: "Ragin' Mad Strike" + }, + + damage: 40, + cost: ["Fire", "Fire"], + + effect: { + en: "If this Pokémon has damage on it, this attack does 40 more damage." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/077.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/077.ts" new file mode 100644 index 0000000000..378e2fbd68 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/077.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Heatran" + }, + + illustrator: "Kazumasa Yasukuni", + rarity: "Three Diamond", + category: "Pokemon", + hp: 110, + types: ["Fire"], + + description: { + en: "It dwells in volcanic caves. It digs in with its\ncross-shaped feet to crawl on ceilings and walls." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Speed Link" + }, + + effect: { + en: "If you have Arceus or Arceus ex in play, this Pokémon has no Retreat Cost." + } + }], + + attacks: [{ + name: { + en: "Ragin' Mad Strike" + }, + + damage: 40, + cost: ["Fire", "Fire"], + + effect: { + en: "If this Pokémon has damage on it, this attack does 40 more damage." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/078.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/078.ts" new file mode 100644 index 0000000000..dec4e51aca --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/078.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Litten" + }, + + illustrator: "Akira Komayama", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + en: "If you try too hard to get close to it, it won't\nopen up to you. Even if you do grow close,\ngiving it too much affection is still a no-no." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Heat Tackle" + }, + + damage: 30, + cost: ["Fire"], + + effect: { + en: "This Pokémon also does 10 damage to itself." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/079.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/079.ts" new file mode 100644 index 0000000000..dec4e51aca --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/079.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Litten" + }, + + illustrator: "Akira Komayama", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + en: "If you try too hard to get close to it, it won't\nopen up to you. Even if you do grow close,\ngiving it too much affection is still a no-no." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Heat Tackle" + }, + + damage: 30, + cost: ["Fire"], + + effect: { + en: "This Pokémon also does 10 damage to itself." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/080.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/080.ts" new file mode 100644 index 0000000000..6bb70d7fd7 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/080.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Torracat" + }, + + illustrator: "tetsuya koizumi", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Fire"], + + evolveFrom: { + en: "Litten" + }, + + description: { + en: "Torracat will let its Trainer coddle it once they've\ngrown close, but it's a powerful, sharp-clawed\nPokémon, so its Trainer gets covered in scratches." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Heat Tackle" + }, + + damage: 40, + cost: ["Fire"], + + effect: { + en: "This Pokémon also does 10 damage to itself." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/081.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/081.ts" new file mode 100644 index 0000000000..6bb70d7fd7 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/081.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Torracat" + }, + + illustrator: "tetsuya koizumi", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Fire"], + + evolveFrom: { + en: "Litten" + }, + + description: { + en: "Torracat will let its Trainer coddle it once they've\ngrown close, but it's a powerful, sharp-clawed\nPokémon, so its Trainer gets covered in scratches." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Heat Tackle" + }, + + damage: 40, + cost: ["Fire"], + + effect: { + en: "This Pokémon also does 10 damage to itself." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/082.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/082.ts" new file mode 100644 index 0000000000..e395279765 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/082.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Incineroar ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 180, + types: ["Fire"], + + evolveFrom: { + en: "Torracat" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Fire Fang" + }, + + damage: 30, + cost: ["Fire"], + + effect: { + en: "Your opponent's Active Pokémon is now Burned." + } + }, { + name: { + en: "Scar-Charged Smash" + }, + + damage: 80, + cost: ["Fire", "Fire", "Colorless"], + + effect: { + en: "If this Pokémon has damage on it, this attack does 60 more damage." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/084.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/084.ts" new file mode 100644 index 0000000000..66053fd1c3 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/084.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Squirtle" + }, + + illustrator: "Mizue", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "When it retracts its long neck into its shell, it\nsquirts out water with vigorous force." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Water Gun" + }, + + damage: 20, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/086.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/086.ts" new file mode 100644 index 0000000000..94882b610e --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/086.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Wartortle" + }, + + illustrator: "Nelnal", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Water"], + + evolveFrom: { + en: "Squirtle" + }, + + description: { + en: "It is recognized as a symbol of longevity. If its\nshell has algae on it, that Wartortle is very old." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Wave Splash" + }, + + damage: 40, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/088.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/088.ts" new file mode 100644 index 0000000000..10f1bdc458 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/088.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Horsea" + }, + + illustrator: "Yukiko Baba", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Water"], + + description: { + en: "Horsea makes its home in oceans with gentle\ncurrents. If this Pokémon is under attack, it spits\nout pitch-black ink and escapes." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Hook" + }, + + damage: 30, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/089.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/089.ts" new file mode 100644 index 0000000000..10f1bdc458 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/089.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Horsea" + }, + + illustrator: "Yukiko Baba", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Water"], + + description: { + en: "Horsea makes its home in oceans with gentle\ncurrents. If this Pokémon is under attack, it spits\nout pitch-black ink and escapes." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Hook" + }, + + damage: 30, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/090.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/090.ts" new file mode 100644 index 0000000000..907c7947c7 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/090.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Seadra" + }, + + illustrator: "sui", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Water"], + + evolveFrom: { + en: "Horsea" + }, + + description: { + en: "It's the males that raise the offspring. While\nSeadra are raising young, the spines on their\nbacks secrete thicker and stronger poison." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Razor Fin" + }, + + damage: 50, + cost: ["Water", "Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/091.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/091.ts" new file mode 100644 index 0000000000..907c7947c7 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/091.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Seadra" + }, + + illustrator: "sui", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Water"], + + evolveFrom: { + en: "Horsea" + }, + + description: { + en: "It's the males that raise the offspring. While\nSeadra are raising young, the spines on their\nbacks secrete thicker and stronger poison." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Razor Fin" + }, + + damage: 50, + cost: ["Water", "Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/093.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/093.ts" new file mode 100644 index 0000000000..1e6b4780da --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/093.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Staryu" + }, + + illustrator: "Hiroki Asanuma", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Water"], + + description: { + en: "If you visit a beach at the end of summer, you'll\nbe able to see groups of Staryu lighting up in a\nsteady rhythm." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Smack" + }, + + damage: 20, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/094.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/094.ts" new file mode 100644 index 0000000000..1e6b4780da --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/094.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Staryu" + }, + + illustrator: "Hiroki Asanuma", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Water"], + + description: { + en: "If you visit a beach at the end of summer, you'll\nbe able to see groups of Staryu lighting up in a\nsteady rhythm." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Smack" + }, + + damage: 20, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/095.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/095.ts" new file mode 100644 index 0000000000..63ca667c17 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/095.ts" @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Starmie ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Four Diamond", + category: "Pokemon", + hp: 130, + types: ["Water"], + + evolveFrom: { + en: "Staryu" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Hydro Splash" + }, + + damage: 90, + cost: ["Water", "Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 0 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/096.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/096.ts" new file mode 100644 index 0000000000..baf89411e7 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/096.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Magikarp" + }, + + illustrator: "Mitsuhiro Arita", + rarity: "One Diamond", + category: "Pokemon", + hp: 30, + types: ["Water"], + + description: { + en: "An underpowered, pathetic Pokémon. It may\njump high on rare occasions but never more\nthan seven feet." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Leap Out" + }, + + cost: ["Water"], + + effect: { + en: "Switch this Pokémon with 1 of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/097.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/097.ts" new file mode 100644 index 0000000000..baf89411e7 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/097.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Magikarp" + }, + + illustrator: "Mitsuhiro Arita", + rarity: "One Diamond", + category: "Pokemon", + hp: 30, + types: ["Water"], + + description: { + en: "An underpowered, pathetic Pokémon. It may\njump high on rare occasions but never more\nthan seven feet." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Leap Out" + }, + + cost: ["Water"], + + effect: { + en: "Switch this Pokémon with 1 of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/098.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/098.ts" new file mode 100644 index 0000000000..4dea7077d3 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/098.ts" @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Gyarados ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 180, + types: ["Water"], + + evolveFrom: { + en: "Magikarp" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Rampaging Whirlpool" + }, + + damage: 140, + cost: ["Water", "Water", "Water", "Colorless"], + + effect: { + en: "Discard a random Energy from among the Energy attached to all Pokémon (both yours and your opponent's)." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/100.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/100.ts" new file mode 100644 index 0000000000..d4140ade16 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/100.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Vaporeon" + }, + + illustrator: "LINNE", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Water"], + + evolveFrom: { + en: "Eevee" + }, + + description: { + en: "It lives close to water. Its long tail is ridged with\na fin, which is often mistaken for a mermaid's." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Wash Out" + }, + + effect: { + en: "As often as you like during your turn, you may move a {W} Energy from 1 of your Benched {W} Pokémon to your Active {W} Pokémon." + } + }], + + attacks: [{ + name: { + en: "Wave Splash" + }, + + damage: 60, + cost: ["Water", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/103.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/103.ts" new file mode 100644 index 0000000000..34ba9e7657 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/103.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Corphish" + }, + + illustrator: "chibi", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "No matter how dirty the water in the river, it will\nadapt and thrive. It has a strong will to survive." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Vise Grip" + }, + + damage: 30, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/105.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/105.ts" new file mode 100644 index 0000000000..3019376f36 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/105.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Crawdaunt" + }, + + illustrator: "Hajime Kusajima", + rarity: "Three Diamond", + category: "Pokemon", + hp: 100, + types: ["Water"], + + evolveFrom: { + en: "Corphish" + }, + + description: { + en: "A rough customer that wildly flails its giant claws.\nIt is said to be extremely hard to raise." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Unruly Claw" + }, + + effect: { + en: "Once during your turn, when you play this Pokémon from your hand to evolve 1 of your Pokémon, you may discard a random Energy from your opponent's Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Crabhammer" + }, + + damage: 70, + cost: ["Water", "Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/106.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/106.ts" new file mode 100644 index 0000000000..4bfdcac180 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/106.ts" @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Glaceon ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 140, + types: ["Water"], + + evolveFrom: { + en: "Eevee" + }, + + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Snowy Terrain" + }, + + effect: { + en: "During Pokémon Checkup, if this Pokémon is in the Active Spot, do 10 damage to your opponent's Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Freezing Wind" + }, + + damage: 90, + cost: ["Water", "Water", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/107.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/107.ts" new file mode 100644 index 0000000000..fd7e99bb92 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/107.ts" @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Palkia ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 150, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Slash" + }, + + damage: 30, + cost: ["Water"] + }, { + name: { + en: "Dimensional Storm" + }, + + damage: 150, + cost: ["Water", "Water", "Water", "Colorless"], + + effect: { + en: "Discard 3 {W} Energy from this Pokémon. This attack also does 20 damage to each of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/108.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/108.ts" new file mode 100644 index 0000000000..65c44dd67d --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/108.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Manaphy" + }, + + illustrator: "MINAMINAMI Take", + rarity: "Two Diamond", + category: "Pokemon", + hp: 50, + types: ["Water"], + + description: { + en: "It is born with a wondrous power that lets it bond\nwith any kind of Pokémon." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Oceanic Gift" + }, + + cost: ["Water"], + + effect: { + en: "Choose 2 of your Benched Pokémon. For each of those Pokémon, take a {W} Energy from your Energy Zone and attach it to that Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/109.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/109.ts" new file mode 100644 index 0000000000..65c44dd67d --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/109.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Manaphy" + }, + + illustrator: "MINAMINAMI Take", + rarity: "Two Diamond", + category: "Pokemon", + hp: 50, + types: ["Water"], + + description: { + en: "It is born with a wondrous power that lets it bond\nwith any kind of Pokémon." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Oceanic Gift" + }, + + cost: ["Water"], + + effect: { + en: "Choose 2 of your Benched Pokémon. For each of those Pokémon, take a {W} Energy from your Energy Zone and attach it to that Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/111.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/111.ts" new file mode 100644 index 0000000000..1379773189 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/111.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Froakie" + }, + + illustrator: "Aya Kusube", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "It secretes flexible bubbles from its chest and back.\nThe bubbles reduce the damage it would otherwise\ntake when attacked." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Flop" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/113.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/113.ts" new file mode 100644 index 0000000000..b3c452ae8a --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/113.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Frogadier" + }, + + illustrator: "Akira Komayama", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Water"], + + evolveFrom: { + en: "Froakie" + }, + + description: { + en: "It can throw bubble-covered pebbles with precise\ncontrol, hitting empty cans up to a hundred feet away." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Water Drip" + }, + + damage: 30, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/115.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/115.ts" new file mode 100644 index 0000000000..30dc3f1067 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/115.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Greninja" + }, + + illustrator: "5ban Graphics", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Water"], + + evolveFrom: { + en: "Frogadier" + }, + + description: { + en: "It creates throwing stars out of compressed water.\nWhen it spins them and throws them at high speed,\nthese stars can split metal in two." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Water Shuriken" + }, + + effect: { + en: "Once during your turn, you may do 20 damage to 1 of your opponent's Pokémon." + } + }], + + attacks: [{ + name: { + en: "Mist Slash" + }, + + damage: 60, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/117.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/117.ts" new file mode 100644 index 0000000000..8837008ef8 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/117.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Popplio" + }, + + illustrator: "match", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + en: "The balloons it inflates with its nose grow\nlarger and larger as it practices day by day." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Watering" + }, + + damage: 30, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/119.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/119.ts" new file mode 100644 index 0000000000..c77d285053 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/119.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Brionne" + }, + + illustrator: "Atsuko Nishida", + rarity: "One Diamond", + category: "Pokemon", + hp: 90, + types: ["Water"], + + evolveFrom: { + en: "Popplio" + }, + + description: { + en: "It gets excited when it sees a dance it\ndoesn't know. This hard worker practices\ndiligently until it can learn that dance." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Water Gun" + }, + + damage: 40, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/120.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/120.ts" new file mode 100644 index 0000000000..fd0f153469 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/120.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Primarina ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 180, + types: ["Water"], + + evolveFrom: { + en: "Brionne" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Hydro Pump" + }, + + damage: 40, + cost: ["Water"], + + effect: { + en: "If this Pokémon has at least 1 extra {W} Energy attached, this attack does 40 more damage." + } + }, { + name: { + en: "Sparkling Aria" + }, + + damage: 100, + cost: ["Water", "Water", "Water"], + + effect: { + en: "Heal 20 damage from this Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/122.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/122.ts" new file mode 100644 index 0000000000..246e51f84a --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/122.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Wishiwashi" + }, + + illustrator: "Kouki Saitou", + rarity: "One Diamond", + category: "Pokemon", + hp: 30, + types: ["Water"], + + description: { + en: "Individually, they're incredibly weak. It's by gathering\nup into schools that they're able to confront opponents." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Call for Family" + }, + + cost: ["Water"], + + effect: { + en: "Put 1 random Wishiwashi or Wishiwashi ex from your deck onto your Bench." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/123.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/123.ts" new file mode 100644 index 0000000000..246e51f84a --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/123.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Wishiwashi" + }, + + illustrator: "Kouki Saitou", + rarity: "One Diamond", + category: "Pokemon", + hp: 30, + types: ["Water"], + + description: { + en: "Individually, they're incredibly weak. It's by gathering\nup into schools that they're able to confront opponents." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Call for Family" + }, + + cost: ["Water"], + + effect: { + en: "Put 1 random Wishiwashi or Wishiwashi ex from your deck onto your Bench." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/125.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/125.ts" new file mode 100644 index 0000000000..6faaa77b83 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/125.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Wiglett" + }, + + illustrator: "miki kudo", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "This Pokémon can pick up the scent of a Veluza\njust over 65 feet away and will hide itself in\nthe sand." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Spring Out" + }, + + cost: ["Water"], + + effect: { + en: "1 of your opponent's Pokémon is chosen at random. Do 30 damage to it." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/126.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/126.ts" new file mode 100644 index 0000000000..6faaa77b83 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/126.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Wiglett" + }, + + illustrator: "miki kudo", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "This Pokémon can pick up the scent of a Veluza\njust over 65 feet away and will hide itself in\nthe sand." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Spring Out" + }, + + cost: ["Water"], + + effect: { + en: "1 of your opponent's Pokémon is chosen at random. Do 30 damage to it." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/127.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/127.ts" new file mode 100644 index 0000000000..23bef76154 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/127.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Wugtrio ex" + }, + + illustrator: "PLANETA Tsuji", + rarity: "Four Diamond", + category: "Pokemon", + hp: 140, + types: ["Water"], + + evolveFrom: { + en: "Wiglett" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Pop Out Throughout" + }, + + cost: ["Water", "Water", "Water"], + + effect: { + en: "1 of your opponent's Pokémon is chosen at random 3 times. For each time a Pokémon was chosen, do 50 damage to it." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/128.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/128.ts" new file mode 100644 index 0000000000..0cba284574 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/128.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu" + }, + + illustrator: "Mitsuhiro Arita", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + en: "When it is angered, it immediately discharges the\nenergy stored in the pouches in its cheeks." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Gnaw" + }, + + damage: 20, + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/129.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/129.ts" new file mode 100644 index 0000000000..0cba284574 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/129.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu" + }, + + illustrator: "Mitsuhiro Arita", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + en: "When it is angered, it immediately discharges the\nenergy stored in the pouches in its cheeks." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Gnaw" + }, + + damage: 20, + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/130.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/130.ts" new file mode 100644 index 0000000000..49fb7e24b2 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/130.ts" @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Alolan Raichu ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 140, + types: ["Lightning"], + + evolveFrom: { + en: "Pikachu" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Psychic" + }, + + damage: 60, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "This attack does 30 more damage for each Energy attached to your opponent's Active Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/131.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/131.ts" new file mode 100644 index 0000000000..8d9ac914c1 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/131.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Circle Circuit" + }, + + damage: 30, + cost: ["Lightning", "Lightning"], + + effect: { + en: "This attack does 30 damage for each of your Benched {L} Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/132.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/132.ts" new file mode 100644 index 0000000000..687a472860 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/132.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Four Diamond", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Thunderbolt" + }, + + damage: 150, + cost: ["Lightning", "Lightning", "Lightning"], + + effect: { + en: "Discard all Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/133.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/133.ts" new file mode 100644 index 0000000000..1ffc7b38a3 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/133.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Magnemite" + }, + + illustrator: "sowsow", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + en: "The electromagnetic waves emitted by the units\nat the sides of its head expel antigravity, which\nallows it to float." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Lightning Ball" + }, + + damage: 20, + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/134.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/134.ts" new file mode 100644 index 0000000000..1ffc7b38a3 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/134.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Magnemite" + }, + + illustrator: "sowsow", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + en: "The electromagnetic waves emitted by the units\nat the sides of its head expel antigravity, which\nallows it to float." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Lightning Ball" + }, + + damage: 20, + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/136.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/136.ts" new file mode 100644 index 0000000000..c23bbb3ffc --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/136.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Magneton" + }, + + illustrator: "kirisAki", + rarity: "Three Diamond", + category: "Pokemon", + hp: 80, + types: ["Lightning"], + + evolveFrom: { + en: "Magnemite" + }, + + description: { + en: "Three Magnemite are linked by a strong magnetic\nforce. Earaches will occur if you get too close." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Volt Charge" + }, + + effect: { + en: "Once during your turn, you may take a {L} Energy from your Energy Zone and attach it to this Pokémon." + } + }], + + attacks: [{ + name: { + en: "Spinning Attack" + }, + + damage: 60, + cost: ["Lightning", "Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/138.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/138.ts" new file mode 100644 index 0000000000..86d844cd9d --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/138.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Magnezone" + }, + + illustrator: "Yoshinobu Saito", + rarity: "Three Diamond", + category: "Pokemon", + hp: 140, + types: ["Lightning"], + + evolveFrom: { + en: "Magneton" + }, + + description: { + en: "As it zooms through the sky, this Pokémon seems\nto be receiving signals of unknown origin while\ntransmitting signals of unknown purpose." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Thunder Blast" + }, + + damage: 110, + cost: ["Lightning", "Colorless", "Colorless"], + + effect: { + en: "Discard a {L} Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/139.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/139.ts" new file mode 100644 index 0000000000..5ac43919e4 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/139.ts" @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Zapdos ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 130, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Peck" + }, + + damage: 20, + cost: ["Lightning"] + }, { + name: { + en: "Thundering Hurricane" + }, + + damage: 50, + cost: ["Lightning", "Lightning", "Lightning"], + + effect: { + en: "Flip 4 coins. This attack does 50 damage for each heads." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/141.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/141.ts" new file mode 100644 index 0000000000..0fda5bac6d --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/141.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Chinchou" + }, + + illustrator: "Miki Tanaka", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + + description: { + en: "Its antennae, which evolved from a fin, have both\npositive and negative charges flowing through them." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Lightning Ball" + }, + + damage: 10, + cost: ["Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/142.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/142.ts" new file mode 100644 index 0000000000..8947ed955a --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/142.ts" @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Lanturn ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Four Diamond", + category: "Pokemon", + hp: 150, + types: ["Lightning"], + + evolveFrom: { + en: "Chinchou" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Flashing Signal" + }, + + damage: 80, + cost: ["Lightning", "Colorless", "Colorless"], + + effect: { + en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed. If tails, your opponent's Active Pokémon is now Confused." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/143.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/143.ts" new file mode 100644 index 0000000000..9869a80289 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/143.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Pachirisu" + }, + + illustrator: "imoniii", + rarity: "Two Diamond", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + + description: { + en: "It's one of the kinds of Pokémon with electric\ncheek pouches. It shoots charges from its tail." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Plasma" + }, + + damage: 10, + cost: ["Lightning"], + + effect: { + en: "Take a {L} Energy from your Energy Zone and attach it to 1 of your Benched {L} Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/144.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/144.ts" new file mode 100644 index 0000000000..9869a80289 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/144.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Pachirisu" + }, + + illustrator: "imoniii", + rarity: "Two Diamond", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + + description: { + en: "It's one of the kinds of Pokémon with electric\ncheek pouches. It shoots charges from its tail." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Plasma" + }, + + damage: 10, + cost: ["Lightning"], + + effect: { + en: "Take a {L} Energy from your Energy Zone and attach it to 1 of your Benched {L} Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/145.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/145.ts" new file mode 100644 index 0000000000..3f78bb7623 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/145.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Pachirisu ex" + }, + + illustrator: "PLANETA Tsuji", + rarity: "Four Diamond", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Sparking Gadget" + }, + + damage: 40, + cost: ["Lightning", "Lightning"], + + effect: { + en: "If this Pokémon has a Pokémon Tool attached, this attack does 40 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/146.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/146.ts" new file mode 100644 index 0000000000..6e460163e3 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/146.ts" @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Oricorio" + }, + + illustrator: "Jerky", + rarity: "Three Diamond", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + + description: { + en: "This form of Oricorio has sipped yellow nectar.\nIt uses nimble steps to approach opponents,\nthen knocks them out with electric punches." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Safeguard" + }, + + effect: { + en: "Prevent all damage done to this Pokémon by attacks from your opponent's Pokémon ex." + } + }], + + attacks: [{ + name: { + en: "Zzzap" + }, + + damage: 50, + cost: ["Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/147.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/147.ts" new file mode 100644 index 0000000000..6e460163e3 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/147.ts" @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Oricorio" + }, + + illustrator: "Jerky", + rarity: "Three Diamond", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + + description: { + en: "This form of Oricorio has sipped yellow nectar.\nIt uses nimble steps to approach opponents,\nthen knocks them out with electric punches." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Safeguard" + }, + + effect: { + en: "Prevent all damage done to this Pokémon by attacks from your opponent's Pokémon ex." + } + }], + + attacks: [{ + name: { + en: "Zzzap" + }, + + damage: 50, + cost: ["Lightning", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/150.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/150.ts" new file mode 100644 index 0000000000..2c442ed3e7 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/150.ts" @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Zeraora" + }, + + illustrator: "kawayoo", + rarity: "Three Diamond", + category: "Pokemon", + hp: 90, + types: ["Lightning"], + + description: { + en: "It electrifies its claws and tears its opponents\napart with them. Even if they dodge its attack,\nthey'll be electrocuted by the flying sparks." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Thunderclap Flash" + }, + + effect: { + en: "At the end of your first turn, take a {L} Energy from your Energy Zone and attach it to this Pokémon." + } + }], + + attacks: [{ + name: { + en: "Lightning Claw" + }, + + damage: 50, + cost: ["Lightning", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/152.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/152.ts" new file mode 100644 index 0000000000..70ceec7978 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/152.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Gastly" + }, + + illustrator: "Masako Yamashita", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "It wraps its opponent in its gas-like body,\nslowly weakening its prey by poisoning it\nthrough the skin." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Suffocating Gas" + }, + + damage: 20, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/154.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/154.ts" new file mode 100644 index 0000000000..07b3679fa4 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/154.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Haunter" + }, + + illustrator: "Nisota Niso", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + + evolveFrom: { + en: "Gastly" + }, + + description: { + en: "It likes to lurk in the dark and tap shoulders\nwith a gaseous hand. Its touch causes endless\nshuddering." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Will-O-Wisp" + }, + + damage: 30, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/156.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/156.ts" new file mode 100644 index 0000000000..88d26cf835 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/156.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Jynx" + }, + + illustrator: "Oswaldo KATO", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + + description: { + en: "Its strange cries sound like human language.\nThere are some musicians who compose songs\nfor Jynx to sing." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Psychic" + }, + + damage: 30, + cost: ["Psychic", "Colorless"], + + effect: { + en: "This attack does 20 more damage for each Energy attached to your opponent's Active Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/157.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/157.ts" new file mode 100644 index 0000000000..88d26cf835 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/157.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Jynx" + }, + + illustrator: "Oswaldo KATO", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + + description: { + en: "Its strange cries sound like human language.\nThere are some musicians who compose songs\nfor Jynx to sing." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Psychic" + }, + + damage: 30, + cost: ["Psychic", "Colorless"], + + effect: { + en: "This attack does 20 more damage for each Energy attached to your opponent's Active Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/158.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/158.ts" new file mode 100644 index 0000000000..7023c4393f --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/158.ts" @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Mewtwo ex" + }, + + illustrator: "PLANETA Mochizuki", + rarity: "Four Diamond", + category: "Pokemon", + hp: 150, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Psychic Sphere" + }, + + damage: 50, + cost: ["Psychic", "Colorless"] + }, { + name: { + en: "Psydrive" + }, + + damage: 150, + cost: ["Psychic", "Psychic", "Colorless", "Colorless"], + + effect: { + en: "Discard 2 {P} Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/160.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/160.ts" new file mode 100644 index 0000000000..941c0ded1e --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/160.ts" @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Espeon ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + + evolveFrom: { + en: "Eevee" + }, + + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Psychic Healing" + }, + + effect: { + en: "Once during your turn, if this Pokémon is in the Active Spot, you may heal 30 damage from 1 of your Pokémon." + } + }], + + attacks: [{ + name: { + en: "Super Psy Bolt" + }, + + damage: 80, + cost: ["Psychic", "Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/162.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/162.ts" new file mode 100644 index 0000000000..80eda5eb12 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/162.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Misdreavus" + }, + + illustrator: "Sumiyoshi Kizuki", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "This Pokémon startles people in the middle of\nthe night. It gathers fear as its energy." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Mumble" + }, + + damage: 20, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/163.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/163.ts" new file mode 100644 index 0000000000..997c892d94 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/163.ts" @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Mismagius ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Four Diamond", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + + evolveFrom: { + en: "Misdreavus" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Magical Delusion" + }, + + damage: 70, + cost: ["Psychic", "Psychic"], + + effect: { + en: "Your opponent's Active Pokémon is now Confused." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/164.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/164.ts" new file mode 100644 index 0000000000..3290d55a9e --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/164.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Ralts" + }, + + illustrator: "Miki Tanaka", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "The horns on its head provide a strong power\nthat enables it to sense people's emotions." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Teleport" + }, + + cost: ["Colorless"], + + effect: { + en: "Switch this Pokémon with 1 of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/165.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/165.ts" new file mode 100644 index 0000000000..3290d55a9e --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/165.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Ralts" + }, + + illustrator: "Miki Tanaka", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "The horns on its head provide a strong power\nthat enables it to sense people's emotions." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Teleport" + }, + + cost: ["Colorless"], + + effect: { + en: "Switch this Pokémon with 1 of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/166.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/166.ts" new file mode 100644 index 0000000000..53fec56f27 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/166.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Kirlia" + }, + + illustrator: "Yukiko Baba", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + + evolveFrom: { + en: "Ralts" + }, + + description: { + en: "It has a psychic power that enables it to distort\nthe space around it and see into the future." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Slap" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/167.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/167.ts" new file mode 100644 index 0000000000..53fec56f27 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/167.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Kirlia" + }, + + illustrator: "Yukiko Baba", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + + evolveFrom: { + en: "Ralts" + }, + + description: { + en: "It has a psychic power that enables it to distort\nthe space around it and see into the future." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Slap" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/168.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/168.ts" new file mode 100644 index 0000000000..099b90ef31 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/168.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Gardevoir" + }, + + illustrator: "Yuu Nishida", + rarity: "Three Diamond", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + + evolveFrom: { + en: "Kirlia" + }, + + description: { + en: "To protect its Trainer, it will expend all its psychic\npower to create a small black hole." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Psy Shadow" + }, + + effect: { + en: "Once during your turn, you may take a {P} Energy from your Energy Zone and attach it to the {P} Pokémon in the Active Spot." + } + }], + + attacks: [{ + name: { + en: "Psyshot" + }, + + damage: 60, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/169.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/169.ts" new file mode 100644 index 0000000000..099b90ef31 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/169.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Gardevoir" + }, + + illustrator: "Yuu Nishida", + rarity: "Three Diamond", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + + evolveFrom: { + en: "Kirlia" + }, + + description: { + en: "To protect its Trainer, it will expend all its psychic\npower to create a small black hole." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Psy Shadow" + }, + + effect: { + en: "Once during your turn, you may take a {P} Energy from your Energy Zone and attach it to the {P} Pokémon in the Active Spot." + } + }], + + attacks: [{ + name: { + en: "Psyshot" + }, + + damage: 60, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/171.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/171.ts" new file mode 100644 index 0000000000..ca273112b9 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/171.ts" @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Giratina" + }, + + illustrator: "AKIRA EGAWA", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + description: { + en: "This Pokémon is said to live in a world on the\nreverse side of ours, where common knowledge is\ndistorted and strange." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Levitate" + }, + + effect: { + en: "If this Pokémon has any Energy attached, it has no Retreat Cost." + } + }], + + attacks: [{ + name: { + en: "Spooky Shot" + }, + + damage: 70, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/173.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/173.ts" new file mode 100644 index 0000000000..e58a91af7c --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/173.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Swirlix" + }, + + illustrator: "MAHOU", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "It eats its own weight in sugar every day.\nIf it doesn't get enough sugar, it becomes\nincredibly grumpy." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Sweets Relay" + }, + + damage: 10, + cost: ["Colorless"], + + effect: { + en: "If 1 of your Pokémon used Sweets Relay during your last turn, this attack does 20 more damage." + } + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/174.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/174.ts" new file mode 100644 index 0000000000..e58a91af7c --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/174.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Swirlix" + }, + + illustrator: "MAHOU", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "It eats its own weight in sugar every day.\nIf it doesn't get enough sugar, it becomes\nincredibly grumpy." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Sweets Relay" + }, + + damage: 10, + cost: ["Colorless"], + + effect: { + en: "If 1 of your Pokémon used Sweets Relay during your last turn, this attack does 20 more damage." + } + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/175.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/175.ts" new file mode 100644 index 0000000000..7c1f63fb6c --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/175.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Slurpuff" + }, + + illustrator: "Kyoko Umemoto", + rarity: "Two Diamond", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + evolveFrom: { + en: "Swirlix" + }, + + description: { + en: "By taking in a person's scent, it can sniff out their\nmental and physical condition. It's hoped that\nthis skill will have many medical applications." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Sweets Relay" + }, + + damage: 30, + cost: ["Colorless", "Colorless"], + + effect: { + en: "If 1 of your Pokémon used Sweets Relay during your last turn, this attack does 60 more damage." + } + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/176.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/176.ts" new file mode 100644 index 0000000000..7c1f63fb6c --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/176.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Slurpuff" + }, + + illustrator: "Kyoko Umemoto", + rarity: "Two Diamond", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + evolveFrom: { + en: "Swirlix" + }, + + description: { + en: "By taking in a person's scent, it can sniff out their\nmental and physical condition. It's hoped that\nthis skill will have many medical applications." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Sweets Relay" + }, + + damage: 30, + cost: ["Colorless", "Colorless"], + + effect: { + en: "If 1 of your Pokémon used Sweets Relay during your last turn, this attack does 60 more damage." + } + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/177.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/177.ts" new file mode 100644 index 0000000000..6e4975c37b --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/177.ts" @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Sylveon ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 140, + types: ["Psychic"], + + evolveFrom: { + en: "Eevee" + }, + + stage: "Stage1", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Happy Ribbon" + }, + + effect: { + en: "Once during your turn, when you play this Pokémon from your hand to evolve 1 of your Pokémon, you may draw 2 cards." + } + }], + + attacks: [{ + name: { + en: "Fairy Wind" + }, + + damage: 70, + cost: ["Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/179.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/179.ts" new file mode 100644 index 0000000000..ea8cf42444 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/179.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Oricorio" + }, + + illustrator: "Jerky", + rarity: "Two Diamond", + category: "Pokemon", + hp: 70, + types: ["Psychic"], + + description: { + en: "This form of Oricorio has sipped purple nectar. It uses\nethereal dance steps to call forth the spirits of the dead." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Spiteful Dance" + }, + + damage: 20, + cost: ["Psychic"], + + effect: { + en: "If any of your Pokémon were Knocked Out by damage from an attack during your opponent's last turn, this attack does 60 more damage." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/180.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/180.ts" new file mode 100644 index 0000000000..eebf5ba252 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/180.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Cosmog" + }, + + illustrator: "sui", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "Even though its helpless, gaseous body can be blown\naway by the slightest breeze, it doesn't seem to care." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Teleport" + }, + + cost: ["Colorless"], + + effect: { + en: "Switch this Pokémon with 1 of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/181.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/181.ts" new file mode 100644 index 0000000000..eebf5ba252 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/181.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Cosmog" + }, + + illustrator: "sui", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "Even though its helpless, gaseous body can be blown\naway by the slightest breeze, it doesn't seem to care." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Teleport" + }, + + cost: ["Colorless"], + + effect: { + en: "Switch this Pokémon with 1 of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/183.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/183.ts" new file mode 100644 index 0000000000..935a46febf --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/183.ts" @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Cosmoem" + }, + + illustrator: "Aya Kusube", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Psychic"], + + evolveFrom: { + en: "Cosmog" + }, + + description: { + en: "The king who ruled Alola in times of antiquity called it\nthe \"cocoon of the stars\" and built an altar to worship it." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Stiffen" + }, + + cost: ["Colorless", "Colorless"], + + effect: { + en: "During your opponent's next turn, this Pokémon takes −50 damage from attacks." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/184.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/184.ts" new file mode 100644 index 0000000000..27fb03564b --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/184.ts" @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Lunala ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 180, + types: ["Psychic"], + + evolveFrom: { + en: "Cosmoem" + }, + + stage: "Stage2", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Psychic Connect" + }, + + effect: { + en: "Once during your turn, you may move all {P} Energy from 1 of your Benched {P} Pokémon to your Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Lunar Blast" + }, + + damage: 100, + cost: ["Psychic", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/185.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/185.ts" new file mode 100644 index 0000000000..2b58cffb54 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/185.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Milcery" + }, + + illustrator: "Mina Nakai", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Psychic"], + + description: { + en: "This Pokémon was born from sweet-smelling\nparticles in the air. Its body is made of cream." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Sweets Relay" + }, + + damage: 10, + cost: ["Colorless"], + + effect: { + en: "If 1 of your Pokémon used Sweets Relay during your last turn, this attack does 20 more damage." + } + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/186.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/186.ts" new file mode 100644 index 0000000000..2b58cffb54 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/186.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Milcery" + }, + + illustrator: "Mina Nakai", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Psychic"], + + description: { + en: "This Pokémon was born from sweet-smelling\nparticles in the air. Its body is made of cream." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Sweets Relay" + }, + + damage: 10, + cost: ["Colorless"], + + effect: { + en: "If 1 of your Pokémon used Sweets Relay during your last turn, this attack does 20 more damage." + } + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/188.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/188.ts" new file mode 100644 index 0000000000..4b4125c027 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/188.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Alcremie" + }, + + illustrator: "Mizue", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + + evolveFrom: { + en: "Milcery" + }, + + description: { + en: "When it trusts a Trainer, it will treat them\nto berries it's decorated with cream." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Sweets Overload" + }, + + damage: 40, + cost: ["Colorless"], + + effect: { + en: "This attack does 40 damage for each time your Pokémon used Sweets Relay during this game." + } + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/189.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/189.ts" new file mode 100644 index 0000000000..bb43ed1245 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/189.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Machop" + }, + + illustrator: "Kyoko Umemoto", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + en: "Its whole body is composed of muscles.\nEven though it's the size of a human child, it can\nhurl 100 grown-ups." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Knuckle Punch" + }, + + damage: 20, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/190.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/190.ts" new file mode 100644 index 0000000000..bb43ed1245 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/190.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Machop" + }, + + illustrator: "Kyoko Umemoto", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + en: "Its whole body is composed of muscles.\nEven though it's the size of a human child, it can\nhurl 100 grown-ups." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Knuckle Punch" + }, + + damage: 20, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/191.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/191.ts" new file mode 100644 index 0000000000..15c40e5fc2 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/191.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Machoke" + }, + + illustrator: "match", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Fighting"], + + evolveFrom: { + en: "Machop" + }, + + description: { + en: "Its muscular body is so powerful, it must wear a\npower-save belt to be able to regulate\nits motions." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Strength" + }, + + damage: 50, + cost: ["Fighting", "Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/192.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/192.ts" new file mode 100644 index 0000000000..15c40e5fc2 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/192.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Machoke" + }, + + illustrator: "match", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Fighting"], + + evolveFrom: { + en: "Machop" + }, + + description: { + en: "Its muscular body is so powerful, it must wear a\npower-save belt to be able to regulate\nits motions." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Strength" + }, + + damage: 50, + cost: ["Fighting", "Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/193.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/193.ts" new file mode 100644 index 0000000000..15e0238a2b --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/193.ts" @@ -0,0 +1,41 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Machamp ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 180, + types: ["Fighting"], + + evolveFrom: { + en: "Machoke" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Mega Punch" + }, + + damage: 120, + cost: ["Fighting", "Fighting", "Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/194.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/194.ts" new file mode 100644 index 0000000000..1aa0557dd1 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/194.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Cubone" + }, + + illustrator: "sowsow", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + en: "When the memory of its departed mother brings\nit to tears, its cries echo mournfully within the\nskull it wears on its head." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Growl" + }, + + cost: ["Colorless"], + + effect: { + en: "During your opponent's next turn, attacks used by the Defending Pokémon do −20 damage." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/195.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/195.ts" new file mode 100644 index 0000000000..1aa0557dd1 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/195.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Cubone" + }, + + illustrator: "sowsow", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + en: "When the memory of its departed mother brings\nit to tears, its cries echo mournfully within the\nskull it wears on its head." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Growl" + }, + + cost: ["Colorless"], + + effect: { + en: "During your opponent's next turn, attacks used by the Defending Pokémon do −20 damage." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/199.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/199.ts" new file mode 100644 index 0000000000..95c5dba71f --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/199.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Sudowoodo" + }, + + illustrator: "Tomokazu Komiya", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + en: "Although it always pretends to be a tree,\nits composition appears more similar to\nrock than to vegetation." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Fighting Headbutt" + }, + + damage: 20, + cost: ["Fighting"], + + effect: { + en: "If your opponent's Active Pokémon is a Pokémon ex, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/200.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/200.ts" new file mode 100644 index 0000000000..40d93b1c08 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/200.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Phanpy" + }, + + illustrator: "Midori Harada", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + en: "This Pokémon lives and nests on a riverbank.\nAfter playing in the mud, it won't be able to\nsettle down unless it washes its body." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Reckless Charge" + }, + + damage: 30, + cost: ["Fighting"], + + effect: { + en: "This Pokémon also does 10 damage to itself." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/201.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/201.ts" new file mode 100644 index 0000000000..40d93b1c08 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/201.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Phanpy" + }, + + illustrator: "Midori Harada", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + en: "This Pokémon lives and nests on a riverbank.\nAfter playing in the mud, it won't be able to\nsettle down unless it washes its body." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Reckless Charge" + }, + + damage: 30, + cost: ["Fighting"], + + effect: { + en: "This Pokémon also does 10 damage to itself." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/202.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/202.ts" new file mode 100644 index 0000000000..6cea4cb0b7 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/202.ts" @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Donphan ex" + }, + + illustrator: "PLANETA Yamashita", + rarity: "Four Diamond", + category: "Pokemon", + hp: 160, + types: ["Fighting"], + + evolveFrom: { + en: "Phanpy" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Gigantic Press" + }, + + damage: 50, + cost: ["Fighting"], + + effect: { + en: "If this Pokémon has at least 2 extra {F} Energy attached, this attack does 60 more damage." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/204.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/204.ts" new file mode 100644 index 0000000000..1a371fa772 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/204.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Nosepass" + }, + + illustrator: "Satoshi Shirai", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + en: "It moves less than an inch a year, but when\nit's in a jam, it will spin and drill down into the\nground in a split second." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tackle" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/205.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/205.ts" new file mode 100644 index 0000000000..f8a792b700 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/205.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Gible" + }, + + illustrator: "Kyoko Umemoto", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + en: "It skulks in caves, and when prey or an enemy\npasses by, it leaps out and chomps them.\nThe force of its attack sometimes chips its teeth." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tackle" + }, + + damage: 20, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/206.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/206.ts" new file mode 100644 index 0000000000..f8a792b700 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/206.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Gible" + }, + + illustrator: "Kyoko Umemoto", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + en: "It skulks in caves, and when prey or an enemy\npasses by, it leaps out and chomps them.\nThe force of its attack sometimes chips its teeth." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tackle" + }, + + damage: 20, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/207.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/207.ts" new file mode 100644 index 0000000000..5b270e5007 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/207.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Gabite" + }, + + illustrator: "Sumiyoshi Kizuki", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + evolveFrom: { + en: "Gible" + }, + + description: { + en: "In rare cases, it molts and sheds its scales.\nMedicine containing its scales as an ingredient\nwill make a weary body feel invigorated." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Sharp Scythe" + }, + + damage: 30, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/208.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/208.ts" new file mode 100644 index 0000000000..5b270e5007 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/208.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Gabite" + }, + + illustrator: "Sumiyoshi Kizuki", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + evolveFrom: { + en: "Gible" + }, + + description: { + en: "In rare cases, it molts and sheds its scales.\nMedicine containing its scales as an ingredient\nwill make a weary body feel invigorated." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Sharp Scythe" + }, + + damage: 30, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/209.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/209.ts" new file mode 100644 index 0000000000..81f3668298 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/209.ts" @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Garchomp ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 170, + types: ["Fighting"], + + evolveFrom: { + en: "Gabite" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Linear Attack" + }, + + cost: ["Fighting"], + + effect: { + en: "This attack does 50 damage to 1 of your opponent's Pokémon." + } + }, { + name: { + en: "Dragon Claw" + }, + + damage: 100, + cost: ["Fighting", "Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/210.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/210.ts" new file mode 100644 index 0000000000..f12afb8c98 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/210.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Riolu" + }, + + illustrator: "You Iribi", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + en: "They communicate with one another using their\nauras. They are able to run all through the night." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Punch" + }, + + damage: 40, + cost: ["Fighting", "Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/211.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/211.ts" new file mode 100644 index 0000000000..f12afb8c98 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/211.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Riolu" + }, + + illustrator: "You Iribi", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + en: "They communicate with one another using their\nauras. They are able to run all through the night." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Punch" + }, + + damage: 40, + cost: ["Fighting", "Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/213.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/213.ts" new file mode 100644 index 0000000000..1bba1fb636 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/213.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Lucario" + }, + + illustrator: "nagimiso", + rarity: "Three Diamond", + category: "Pokemon", + hp: 100, + types: ["Fighting"], + + evolveFrom: { + en: "Riolu" + }, + + description: { + en: "It's said that no foe can remain invisible to\nLucario, since it can detect auras—even those\nof foes it could not otherwise see." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Fighting Coach" + }, + + effect: { + en: "Attacks used by your {F} Pokémon do +20 damage to your opponent's Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Submarine Blow" + }, + + damage: 40, + cost: ["Fighting", "Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/217.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/217.ts" new file mode 100644 index 0000000000..99aa6f7fac --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/217.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Drilbur" + }, + + illustrator: "Tomokazu Komiya", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + en: "It brings its claws together and whirls around\nat high speed before rushing toward its prey." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Scratch" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/218.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/218.ts" new file mode 100644 index 0000000000..e5f00777e2 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/218.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Crabrawler" + }, + + illustrator: "kirisAki", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + en: "This Pokémon punches trees and eats\nthe berries that drop down, training itself\nand getting food at the same time." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Punch" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/219.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/219.ts" new file mode 100644 index 0000000000..e5f00777e2 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/219.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Crabrawler" + }, + + illustrator: "kirisAki", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + en: "This Pokémon punches trees and eats\nthe berries that drop down, training itself\nand getting food at the same time." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Punch" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/220.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/220.ts" new file mode 100644 index 0000000000..6a6958ff9f --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/220.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Rockruff" + }, + + illustrator: "match", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + en: "This Pokémon is very friendly when it's young.\nIts disposition becomes vicious once it matures,\nbut it never forgets the kindness of its master." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Rock Throw" + }, + + damage: 40, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/221.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/221.ts" new file mode 100644 index 0000000000..6a6958ff9f --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/221.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Rockruff" + }, + + illustrator: "match", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + en: "This Pokémon is very friendly when it's young.\nIts disposition becomes vicious once it matures,\nbut it never forgets the kindness of its master." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Rock Throw" + }, + + damage: 40, + cost: ["Fighting", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/222.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/222.ts" new file mode 100644 index 0000000000..30b82c9a88 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/222.ts" @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Lycanroc ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 150, + types: ["Fighting"], + + evolveFrom: { + en: "Rockruff" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Lycanfang" + }, + + damage: 130, + cost: ["Fighting", "Fighting", "Colorless"], + + effect: { + en: "Discard a {F} Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/224.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/224.ts" new file mode 100644 index 0000000000..693ee83b4e --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/224.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Marshadow" + }, + + illustrator: "kantaro", + rarity: "Three Diamond", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + en: "It slips into the shadows of others and mimics\ntheir powers and movements. As it improves, it\nbecomes stronger than those it's imitating." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Revenge" + }, + + damage: 40, + cost: ["Fighting", "Colorless"], + + effect: { + en: "If any of your Pokémon were Knocked Out by damage from an attack during your opponent's last turn, this attack does 60 more damage." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/225.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/225.ts" new file mode 100644 index 0000000000..693ee83b4e --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/225.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Marshadow" + }, + + illustrator: "kantaro", + rarity: "Three Diamond", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + en: "It slips into the shadows of others and mimics\ntheir powers and movements. As it improves, it\nbecomes stronger than those it's imitating." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Revenge" + }, + + damage: 40, + cost: ["Fighting", "Colorless"], + + effect: { + en: "If any of your Pokémon were Knocked Out by damage from an attack during your opponent's last turn, this attack does 60 more damage." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/227.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/227.ts" new file mode 100644 index 0000000000..c1860dac9a --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/227.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Zubat" + }, + + illustrator: "Sekio", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Darkness"], + + description: { + en: "It emits ultrasonic waves from its mouth to check\nits surroundings. Even in tight caves, Zubat flies\naround with skill." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Bite" + }, + + damage: 20, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/229.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/229.ts" new file mode 100644 index 0000000000..3fd1630f9c --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/229.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Golbat" + }, + + illustrator: "Kyoko Umemoto", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Darkness"], + + evolveFrom: { + en: "Zubat" + }, + + description: { + en: "It loves to drink other creatures' blood. It's said\nthat if it finds others of its kind going hungry,\nit sometimes shares the blood it's gathered." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Bite" + }, + + damage: 30, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/230.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/230.ts" new file mode 100644 index 0000000000..711260d368 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/230.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Crobat" + }, + + illustrator: "AKIRA EGAWA", + rarity: "Three Diamond", + category: "Pokemon", + hp: 110, + types: ["Darkness"], + + evolveFrom: { + en: "Golbat" + }, + + description: { + en: "Both of its legs have turned into wings. Without a\nsound, Crobat flies swiftly toward its prey and\nsinks its fangs into the nape of its target's neck." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Cunning Link" + }, + + effect: { + en: "Once during your turn, if you have Arceus or Arceus ex in play, you may do 30 damage to your opponent's Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Darkness Fang" + }, + + damage: 50, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 0 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/231.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/231.ts" new file mode 100644 index 0000000000..711260d368 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/231.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Crobat" + }, + + illustrator: "AKIRA EGAWA", + rarity: "Three Diamond", + category: "Pokemon", + hp: 110, + types: ["Darkness"], + + evolveFrom: { + en: "Golbat" + }, + + description: { + en: "Both of its legs have turned into wings. Without a\nsound, Crobat flies swiftly toward its prey and\nsinks its fangs into the nape of its target's neck." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Cunning Link" + }, + + effect: { + en: "Once during your turn, if you have Arceus or Arceus ex in play, you may do 30 damage to your opponent's Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Darkness Fang" + }, + + damage: 50, + cost: ["Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 0 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/234.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/234.ts" new file mode 100644 index 0000000000..808460a1d5 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/234.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Alolan Grimer" + }, + + illustrator: "Akira Komayama", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + + description: { + en: "There are a hundred or so of them living in\nAlola's waste-disposal site. They're all hard\nworkers who eat a lot of trash." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Sludge Toss" + }, + + damage: 30, + cost: ["Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/235.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/235.ts" new file mode 100644 index 0000000000..3576853f70 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/235.ts" @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Alolan Muk ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 160, + types: ["Darkness"], + + evolveFrom: { + en: "Alolan Grimer" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Chemical Panic" + }, + + damage: 80, + cost: ["Darkness", "Darkness", "Colorless"], + + effect: { + en: "1 Special Condition from among Asleep, Burned, Confused, Paralyzed, and Poisoned is chosen at random, and your opponent's Active Pokémon is now affected by that Special Condition. Any Special Conditions already affecting that Pokémon will not be chosen." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/236.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/236.ts" new file mode 100644 index 0000000000..67f4aa8f87 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/236.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Paldean Wooper" + }, + + illustrator: "Mori Yuu", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Darkness"], + + description: { + en: "After losing a territorial struggle, Wooper began\nliving on land. The Pokémon changed over time,\ndeveloping a poisonous film to protect its body." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Poison Jab" + }, + + damage: 10, + cost: ["Darkness"], + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/237.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/237.ts" new file mode 100644 index 0000000000..67f4aa8f87 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/237.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Paldean Wooper" + }, + + illustrator: "Mori Yuu", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Darkness"], + + description: { + en: "After losing a territorial struggle, Wooper began\nliving on land. The Pokémon changed over time,\ndeveloping a poisonous film to protect its body." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Poison Jab" + }, + + damage: 10, + cost: ["Darkness"], + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/238.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/238.ts" new file mode 100644 index 0000000000..452e995b80 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/238.ts" @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Paldean Clodsire ex" + }, + + illustrator: "PLANETA Mochizuki", + rarity: "Four Diamond", + category: "Pokemon", + hp: 160, + types: ["Darkness"], + + evolveFrom: { + en: "Paldean Wooper" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Venoshock" + }, + + damage: 60, + cost: ["Darkness", "Darkness"], + + effect: { + en: "If your opponent's Active Pokémon is Poisoned, this attack does 60 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/239.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/239.ts" new file mode 100644 index 0000000000..639f764a46 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/239.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Umbreon" + }, + + illustrator: "Ryota Murayama", + rarity: "Three Diamond", + category: "Pokemon", + hp: 100, + types: ["Darkness"], + + evolveFrom: { + en: "Eevee" + }, + + description: { + en: "When exposed to the moon's aura, the rings on its\nbody glow faintly and it gains a mysterious power." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Dark Binding" + }, + + damage: 40, + cost: ["Darkness"], + + effect: { + en: "If the Defending Pokémon is a Basic Pokémon, it can't attack during your opponent's next turn." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/240.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/240.ts" new file mode 100644 index 0000000000..639f764a46 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/240.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Umbreon" + }, + + illustrator: "Ryota Murayama", + rarity: "Three Diamond", + category: "Pokemon", + hp: 100, + types: ["Darkness"], + + evolveFrom: { + en: "Eevee" + }, + + description: { + en: "When exposed to the moon's aura, the rings on its\nbody glow faintly and it gains a mysterious power." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Dark Binding" + }, + + damage: 40, + cost: ["Darkness"], + + effect: { + en: "If the Defending Pokémon is a Basic Pokémon, it can't attack during your opponent's next turn." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/242.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/242.ts" new file mode 100644 index 0000000000..bebf543158 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/242.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Sneasel" + }, + + illustrator: "Hasuno", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + + description: { + en: "This cunning Pokémon hides under the cover of\ndarkness, waiting to attack its prey." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Double Scratch" + }, + + damage: 20, + cost: ["Darkness"], + + effect: { + en: "Flip 2 coins. This attack does 20 damage for each heads." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/243.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/243.ts" new file mode 100644 index 0000000000..bebf543158 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/243.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Sneasel" + }, + + illustrator: "Hasuno", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + + description: { + en: "This cunning Pokémon hides under the cover of\ndarkness, waiting to attack its prey." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Double Scratch" + }, + + damage: 20, + cost: ["Darkness"], + + effect: { + en: "Flip 2 coins. This attack does 20 damage for each heads." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/247.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/247.ts" new file mode 100644 index 0000000000..8c6c21cb0b --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/247.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Nihilego" + }, + + illustrator: "nagimiso", + rarity: "Three Diamond", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + + description: { + en: "A life-form from another world, it was dubbed\na UB and is thought to produce a\nstrong neurotoxin." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "More Poison" + }, + + effect: { + en: "Your opponent's Active Pokémon takes +10 damage from being Poisoned." + } + }], + + attacks: [{ + name: { + en: "New Wave" + }, + + damage: 30, + cost: ["Darkness", "Colorless"], + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/250.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/250.ts" new file mode 100644 index 0000000000..4ba238bdba --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/250.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Alolan Diglett" + }, + + illustrator: "Megumi Mizutani", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Metal"], + + description: { + en: "The metal-rich geology of this Pokémon's habitat\ncaused it to develop steel whiskers on its head." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Happened to Headbutt" + }, + + damage: 40, + cost: ["Metal"], + + effect: { + en: "Flip a coin. If tails, this attack does nothing." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/252.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/252.ts" new file mode 100644 index 0000000000..237dabeac6 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/252.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Skarmory ex" + }, + + illustrator: "PLANETA Yamashita", + rarity: "Four Diamond", + category: "Pokemon", + hp: 140, + types: ["Metal"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Steel Wing" + }, + + damage: 70, + cost: ["Metal", "Metal"], + + effect: { + en: "During your opponent's next turn, this Pokémon takes −20 damage from attacks." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/254.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/254.ts" new file mode 100644 index 0000000000..e496d9cb6f --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/254.ts" @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Dialga ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 150, + types: ["Metal"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Metallic Turbo" + }, + + damage: 30, + cost: ["Metal", "Metal"], + + effect: { + en: "Take 2 {M} Energy from your Energy Zone and attach it to 1 of your Benched Pokémon." + } + }, { + name: { + en: "Heavy Impact" + }, + + damage: 100, + cost: ["Metal", "Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/255.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/255.ts" new file mode 100644 index 0000000000..05b8e6dbca --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/255.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Excadrill" + }, + + illustrator: "SATOSHI NAKAI", + rarity: "Two Diamond", + category: "Pokemon", + hp: 110, + types: ["Metal"], + + evolveFrom: { + en: "Drilbur" + }, + + description: { + en: "It's not uncommon for tunnels that appear to\nhave formed naturally to actually be a result\nof Excadrill's rampant digging." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Slash" + }, + + damage: 50, + cost: ["Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/256.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/256.ts" new file mode 100644 index 0000000000..05b8e6dbca --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/256.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Excadrill" + }, + + illustrator: "SATOSHI NAKAI", + rarity: "Two Diamond", + category: "Pokemon", + hp: 110, + types: ["Metal"], + + evolveFrom: { + en: "Drilbur" + }, + + description: { + en: "It's not uncommon for tunnels that appear to\nhave formed naturally to actually be a result\nof Excadrill's rampant digging." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Slash" + }, + + damage: 50, + cost: ["Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/257.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/257.ts" new file mode 100644 index 0000000000..92b66ae8dc --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/257.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Klefki" + }, + + illustrator: "Shin Nagasawa", + rarity: "Three Diamond", + category: "Pokemon", + hp: 70, + types: ["Metal"], + + description: { + en: "Once it absorbs a key's metal ions, it discards the\nkey without a second thought. However, it will\nhang on to keys it favors for decades." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Unlock" + }, + + damage: 10, + cost: ["Metal"], + + effect: { + en: "Draw a card." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/258.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/258.ts" new file mode 100644 index 0000000000..92b66ae8dc --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/258.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Klefki" + }, + + illustrator: "Shin Nagasawa", + rarity: "Three Diamond", + category: "Pokemon", + hp: 70, + types: ["Metal"], + + description: { + en: "Once it absorbs a key's metal ions, it discards the\nkey without a second thought. However, it will\nhang on to keys it favors for decades." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Unlock" + }, + + damage: 10, + cost: ["Metal"], + + effect: { + en: "Draw a card." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/260.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/260.ts" new file mode 100644 index 0000000000..cdb635bccd --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/260.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Magearna" + }, + + illustrator: "kawayoo", + rarity: "Three Diamond", + category: "Pokemon", + hp: 90, + types: ["Metal"], + + description: { + en: "It synchronizes its consciousness with others\nto understand their feelings. This faculty makes\nit useful for taking care of people." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Silver Cannon" + }, + + damage: 40, + cost: ["Metal", "Metal"], + + effect: { + en: "If your opponent's Active Pokémon has an Ability, this attack does 40 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/261.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/261.ts" new file mode 100644 index 0000000000..cdb635bccd --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/261.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Magearna" + }, + + illustrator: "kawayoo", + rarity: "Three Diamond", + category: "Pokemon", + hp: 90, + types: ["Metal"], + + description: { + en: "It synchronizes its consciousness with others\nto understand their feelings. This faculty makes\nit useful for taking care of people." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Silver Cannon" + }, + + damage: 40, + cost: ["Metal", "Metal"], + + effect: { + en: "If your opponent's Active Pokémon has an Ability, this attack does 40 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/263.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/263.ts" new file mode 100644 index 0000000000..3d7fb12962 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/263.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Tinkatink" + }, + + illustrator: "miki kudo", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Metal"], + + description: { + en: "It swings its handmade hammer around to protect\nitself, but the hammer is often stolen by Pokémon\nthat eat metal." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Corkscrew Punch" + }, + + damage: 20, + cost: ["Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/264.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/264.ts" new file mode 100644 index 0000000000..97193b9e1d --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/264.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Tinkatuff" + }, + + illustrator: "miki kudo", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Metal"], + + evolveFrom: { + en: "Tinkatink" + }, + + description: { + en: "This Pokémon will attack groups of Pawniard and\nBisharp, gathering metal from them in order to\ncreate a large and sturdy hammer." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Tenacious Hammer" + }, + + damage: 30, + cost: ["Metal", "Metal"], + + effect: { + en: "Flip a coin. If heads, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/265.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/265.ts" new file mode 100644 index 0000000000..97193b9e1d --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/265.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Tinkatuff" + }, + + illustrator: "miki kudo", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Metal"], + + evolveFrom: { + en: "Tinkatink" + }, + + description: { + en: "This Pokémon will attack groups of Pawniard and\nBisharp, gathering metal from them in order to\ncreate a large and sturdy hammer." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Tenacious Hammer" + }, + + damage: 30, + cost: ["Metal", "Metal"], + + effect: { + en: "Flip a coin. If heads, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/266.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/266.ts" new file mode 100644 index 0000000000..2ad7bfd145 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/266.ts" @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Tinkaton ex" + }, + + illustrator: "PLANETA Mochizuki", + rarity: "Four Diamond", + category: "Pokemon", + hp: 170, + types: ["Metal"], + + evolveFrom: { + en: "Tinkatuff" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Terrific Thumping" + }, + + damage: 80, + cost: ["Metal", "Metal", "Colorless"], + + effect: { + en: "Flip a coin. If heads, this attack does 80 more damage." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/268.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/268.ts" new file mode 100644 index 0000000000..26e47d39dc --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/268.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Dratini" + }, + + illustrator: "Naoyo Kimura", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Dragon"], + + description: { + en: "It sheds many layers of skin as it grows larger.\nDuring this process, it is protected by a rapid\nwaterfall." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Beat" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Colorless", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/269.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/269.ts" new file mode 100644 index 0000000000..621a3d7317 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/269.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Dragonair" + }, + + illustrator: "sui", + rarity: "One Diamond", + category: "Pokemon", + hp: 90, + types: ["Dragon"], + + evolveFrom: { + en: "Dratini" + }, + + description: { + en: "They say that if it emits an aura from its whole\nbody, the weather will begin to change instantly." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Waterfall" + }, + + damage: 60, + cost: ["Water", "Lightning"] + }], + + weaknesses: [{ + type: "Colorless", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/270.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/270.ts" new file mode 100644 index 0000000000..621a3d7317 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/270.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Dragonair" + }, + + illustrator: "sui", + rarity: "One Diamond", + category: "Pokemon", + hp: 90, + types: ["Dragon"], + + evolveFrom: { + en: "Dratini" + }, + + description: { + en: "They say that if it emits an aura from its whole\nbody, the weather will begin to change instantly." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Waterfall" + }, + + damage: 60, + cost: ["Water", "Lightning"] + }], + + weaknesses: [{ + type: "Colorless", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/271.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/271.ts" new file mode 100644 index 0000000000..1dcc314b85 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/271.ts" @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Dragonite ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Four Diamond", + category: "Pokemon", + hp: 180, + types: ["Dragon"], + + evolveFrom: { + en: "Dragonair" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Giga Impact" + }, + + damage: 180, + cost: ["Water", "Lightning", "Colorless"], + + effect: { + en: "During your next turn, this Pokémon can't attack." + } + }], + + weaknesses: [{ + type: "Colorless", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/272.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/272.ts" new file mode 100644 index 0000000000..c848083d1f --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/272.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Pidgey" + }, + + illustrator: "Shigenori Negishi", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + + description: { + en: "A common sight in forests and woods. It flaps\nits wings at ground level to kick up blinding sand." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Flap" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/273.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/273.ts" new file mode 100644 index 0000000000..c848083d1f --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/273.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Pidgey" + }, + + illustrator: "Shigenori Negishi", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + + description: { + en: "A common sight in forests and woods. It flaps\nits wings at ground level to kick up blinding sand." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Flap" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/274.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/274.ts" new file mode 100644 index 0000000000..fa2fada46a --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/274.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Pidgeotto" + }, + + illustrator: "Taiga Kayama", + rarity: "One Diamond", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + + evolveFrom: { + en: "Pidgey" + }, + + description: { + en: "The claws on its feet are well developed.\nIt can carry prey such as an Exeggcute\nto its nest over 60 miles away." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Wing Attack" + }, + + damage: 50, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/275.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/275.ts" new file mode 100644 index 0000000000..fa2fada46a --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/275.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Pidgeotto" + }, + + illustrator: "Taiga Kayama", + rarity: "One Diamond", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + + evolveFrom: { + en: "Pidgey" + }, + + description: { + en: "The claws on its feet are well developed.\nIt can carry prey such as an Exeggcute\nto its nest over 60 miles away." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Wing Attack" + }, + + damage: 50, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/276.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/276.ts" new file mode 100644 index 0000000000..59a3d1e7cb --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/276.ts" @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Pidgeot ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 170, + types: ["Colorless"], + + evolveFrom: { + en: "Pidgeotto" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Scattering Cyclone" + }, + + damage: 80, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "This attack does 20 more damage for each of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/278.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/278.ts" new file mode 100644 index 0000000000..eb213f97d6 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/278.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Jigglypuff" + }, + + illustrator: "Mizue", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "When its huge eyes waver, it sings a mysteriously\nsoothing melody that lulls its enemies to sleep." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Pound" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/280.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/280.ts" new file mode 100644 index 0000000000..c53f60c817 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/280.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Farfetch'd" + }, + + illustrator: "Miki Tanaka", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "The stalk this Pokémon carries in its wings serves\nas a sword to cut down opponents. In a dire\nsituation, the stalk can also serve as food." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Leek Slap" + }, + + damage: 40, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/281.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/281.ts" new file mode 100644 index 0000000000..c53f60c817 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/281.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Farfetch'd" + }, + + illustrator: "Miki Tanaka", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "The stalk this Pokémon carries in its wings serves\nas a sword to cut down opponents. In a dire\nsituation, the stalk can also serve as food." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Leek Slap" + }, + + damage: 40, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/283.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/283.ts" new file mode 100644 index 0000000000..4d87091abc --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/283.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Lickitung" + }, + + illustrator: "Yukiko Baba", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + + description: { + en: "If this Pokémon's sticky saliva gets on you and\nyou don't clean it off, an intense itch will set in.\nThe itch won't go away, either." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tongue Slap" + }, + + damage: 50, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/285.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/285.ts" new file mode 100644 index 0000000000..5c45f7c70f --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/285.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Eevee" + }, + + illustrator: "Naoki Saito", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "Its ability to evolve into many forms allows it to\nadapt smoothly and perfectly to any environment." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Collect" + }, + + cost: ["Colorless"], + + effect: { + en: "Draw a card." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/286.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/286.ts" new file mode 100644 index 0000000000..5c45f7c70f --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/286.ts" @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Eevee" + }, + + illustrator: "Naoki Saito", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "Its ability to evolve into many forms allows it to\nadapt smoothly and perfectly to any environment." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Collect" + }, + + cost: ["Colorless"], + + effect: { + en: "Draw a card." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/288.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/288.ts" new file mode 100644 index 0000000000..d7f311badb --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/288.ts" @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Snorlax ex" + }, + + illustrator: "PLANETA Tsuji", + rarity: "Four Diamond", + category: "Pokemon", + hp: 160, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Full-Mouth Manner" + }, + + effect: { + en: "At the end of your turn, if this Pokémon is in the Active Spot, heal 20 damage from it." + } + }], + + attacks: [{ + name: { + en: "Flop-Down Punch" + }, + + damage: 130, + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + effect: { + en: "This Pokémon is now Asleep." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 4 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/289.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/289.ts" new file mode 100644 index 0000000000..b5af7653b7 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/289.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Lugia ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 150, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Elemental Blast" + }, + + damage: 180, + cost: ["Fire", "Water", "Lightning"], + + effect: { + en: "Discard a {R}, {W}, and {L} Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/291.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/291.ts" new file mode 100644 index 0000000000..4d2ccd19c5 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/291.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Skitty" + }, + + illustrator: "Sumiyoshi Kizuki", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "It can't stop itself from chasing moving things,\nand it runs in a circle, chasing its own tail." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tackle" + }, + + damage: 20, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/293.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/293.ts" new file mode 100644 index 0000000000..29dd274a8d --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/293.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Delcatty" + }, + + illustrator: "0313", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + + evolveFrom: { + en: "Skitty" + }, + + description: { + en: "It dislikes dirty places. It often searches for a\ncomfortable place in which to groom itself." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Energy Assist" + }, + + damage: 30, + cost: ["Colorless"], + + effect: { + en: "Take a {C} Energy from your Energy Zone and attach it to 1 of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/295.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/295.ts" new file mode 100644 index 0000000000..62e27cfe33 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/295.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Bidoof" + }, + + illustrator: "Sekio", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + en: "With nerves of steel, nothing can perturb it. It is\nmore agile and active than it appears." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Headbutt" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/296.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/296.ts" new file mode 100644 index 0000000000..50e8af2edf --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/296.ts" @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Bibarel ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 160, + types: ["Colorless"], + + evolveFrom: { + en: "Bidoof" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Carefree Press" + }, + + damage: 100, + cost: ["Colorless", "Colorless", "Colorless", "Colorless"], + + effect: { + en: "Heal 30 damage from this Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/297.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/297.ts" new file mode 100644 index 0000000000..a2ed2a0d50 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/297.ts" @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Shaymin" + }, + + illustrator: "Mizue", + rarity: "Three Diamond", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + en: "It can dissolve toxins in the air to instantly\ntransform ruined land into a lush field of flowers." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Sky Support" + }, + + effect: { + en: "As long as this Pokémon is on your Bench, your Active Basic Pokémon's Retreat Cost is 1 less." + } + }], + + attacks: [{ + name: { + en: "Flap" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/298.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/298.ts" new file mode 100644 index 0000000000..a2ed2a0d50 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/298.ts" @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Shaymin" + }, + + illustrator: "Mizue", + rarity: "Three Diamond", + category: "Pokemon", + hp: 70, + types: ["Colorless"], + + description: { + en: "It can dissolve toxins in the air to instantly\ntransform ruined land into a lush field of flowers." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Sky Support" + }, + + effect: { + en: "As long as this Pokémon is on your Bench, your Active Basic Pokémon's Retreat Cost is 1 less." + } + }], + + attacks: [{ + name: { + en: "Flap" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/300.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/300.ts" new file mode 100644 index 0000000000..4a98a8fe84 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/300.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Type: Null" + }, + + illustrator: "match", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + + description: { + en: "A Pokémon weapon developed for a specific\nmission, it went berserk during an experiment,\nso it was cryogenically frozen." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Quick Blow" + }, + + damage: 20, + cost: ["Colorless"], + + effect: { + en: "Flip a coin. If heads, this attack does 20 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/301.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/301.ts" new file mode 100644 index 0000000000..4a98a8fe84 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/301.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Type: Null" + }, + + illustrator: "match", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + + description: { + en: "A Pokémon weapon developed for a specific\nmission, it went berserk during an experiment,\nso it was cryogenically frozen." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Quick Blow" + }, + + damage: 20, + cost: ["Colorless"], + + effect: { + en: "Flip a coin. If heads, this attack does 20 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/302.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/302.ts" new file mode 100644 index 0000000000..1840e87fac --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/302.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Silvally" + }, + + illustrator: "Eske Yoshinob", + rarity: "Three Diamond", + category: "Pokemon", + hp: 110, + types: ["Colorless"], + + evolveFrom: { + en: "Type: Null" + }, + + description: { + en: "This is its form once it has awakened and\nevolved. Freed from its heavy mask, its speed is\ngreatly increased." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Brave Buddies" + }, + + damage: 50, + cost: ["Colorless", "Colorless"], + + effect: { + en: "If you played a Supporter card from your hand during this turn, this attack does 50 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/303.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/303.ts" new file mode 100644 index 0000000000..1840e87fac --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/303.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Silvally" + }, + + illustrator: "Eske Yoshinob", + rarity: "Three Diamond", + category: "Pokemon", + hp: 110, + types: ["Colorless"], + + evolveFrom: { + en: "Type: Null" + }, + + description: { + en: "This is its form once it has awakened and\nevolved. Freed from its heavy mask, its speed is\ngreatly increased." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Brave Buddies" + }, + + damage: 50, + cost: ["Colorless", "Colorless"], + + effect: { + en: "If you played a Supporter card from your hand during this turn, this attack does 50 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/304.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/304.ts" new file mode 100644 index 0000000000..c1d07c35a1 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/304.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Celesteela" + }, + + illustrator: "kawayoo", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Colorless"], + + description: { + en: "One of the dangerous UBs, high energy readings\ncan be detected coming from both of its\nhuge arms." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Ultra Thrusters" + }, + + effect: { + en: "Once during your turn, you may switch your Active Ultra Beast with 1 of your Benched Ultra Beasts." + } + }], + + attacks: [{ + name: { + en: "Moombahton" + }, + + damage: 100, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "Flip a coin. If tails, this attack does nothing." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 4 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/305.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/305.ts" new file mode 100644 index 0000000000..c1d07c35a1 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/305.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Celesteela" + }, + + illustrator: "kawayoo", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Colorless"], + + description: { + en: "One of the dangerous UBs, high energy readings\ncan be detected coming from both of its\nhuge arms." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Ultra Thrusters" + }, + + effect: { + en: "Once during your turn, you may switch your Active Ultra Beast with 1 of your Benched Ultra Beasts." + } + }], + + attacks: [{ + name: { + en: "Moombahton" + }, + + damage: 100, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "Flip a coin. If tails, this attack does nothing." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 4 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/307.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/307.ts" new file mode 100644 index 0000000000..277e13cee1 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/307.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Cyclizar" + }, + + illustrator: "HAGIYA Kaoru", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + + description: { + en: "Apparently Cyclizar has been allowing people to\nride on its back since ancient times. Depictions of\nthis have been found in 10,000-year-old murals." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Overacceleration" + }, + + damage: 20, + cost: ["Colorless"], + + effect: { + en: "During your next turn, this Pokémon's Overacceleration attack does +20 damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/309.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/309.ts" new file mode 100644 index 0000000000..9436524c77 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/309.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Eevee Bag" + }, + + illustrator: "AYUMI ODASHIMA", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Choose 1:\n\nDuring this turn, attacks used by your Pokémon that evolve from Eevee do +10 damage to your opponent's Active Pokémon.\n\nHeal 20 damage from each of your Pokémon that evolves from Eevee." + }, + + trainerType: "Item" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/311.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/311.ts" new file mode 100644 index 0000000000..aa49ba8771 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/311.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Elemental Switch" + }, + + illustrator: "Toyste Beach", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Move a {R}, {W}, or {L} Energy from 1 of your Benched Pokémon to your Active Pokémon." + }, + + trainerType: "Item" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/312.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/312.ts" new file mode 100644 index 0000000000..9711b6b320 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/312.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Old Amber" + }, + + illustrator: "Toyste Beach", + rarity: "One Diamond", + category: "Trainer", + + effect: { + en: "Play this card as if it were a 40-HP Basic {C} Pokémon.\nAt any time during your turn, you may discard this card from play.\nThis card can't retreat." + }, + + trainerType: "Item" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/313.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/313.ts" new file mode 100644 index 0000000000..9711b6b320 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/313.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Old Amber" + }, + + illustrator: "Toyste Beach", + rarity: "One Diamond", + category: "Trainer", + + effect: { + en: "Play this card as if it were a 40-HP Basic {C} Pokémon.\nAt any time during your turn, you may discard this card from play.\nThis card can't retreat." + }, + + trainerType: "Item" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/314.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/314.ts" new file mode 100644 index 0000000000..b54bd8cef6 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/314.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Rare Candy" + }, + + illustrator: "Toyste Beach", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Choose 1 of your Basic Pokémon in play. If you have a Stage 2 card in your hand that evolves from that Pokémon, put that card onto the Basic Pokémon to evolve it, skipping the Stage 1. You can't use this card during your first turn or on a Basic Pokémon that was put into play this turn." + }, + + trainerType: "Item" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/315.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/315.ts" new file mode 100644 index 0000000000..b54bd8cef6 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/315.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Rare Candy" + }, + + illustrator: "Toyste Beach", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Choose 1 of your Basic Pokémon in play. If you have a Stage 2 card in your hand that evolves from that Pokémon, put that card onto the Basic Pokémon to evolve it, skipping the Stage 1. You can't use this card during your first turn or on a Basic Pokémon that was put into play this turn." + }, + + trainerType: "Item" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/317.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/317.ts" new file mode 100644 index 0000000000..7e6f264a04 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/317.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Pokémon Communication" + }, + + illustrator: "Ayaka Yoshida", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Choose a Pokémon in your hand and switch it with a random Pokémon in your deck." + }, + + trainerType: "Item" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/318.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/318.ts" new file mode 100644 index 0000000000..215893e0b3 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/318.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Electrical Cord" + }, + + illustrator: "Toyste Beach", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "If the {L} Pokémon this card is attached to is in the Active Spot and is Knocked Out by damage from an attack from your opponent's Pokémon, move 2 {L} Energy from that Pokémon and attach 1 Energy each to 2 of your Benched Pokémon." + }, + + trainerType: "Tool" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/319.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/319.ts" new file mode 100644 index 0000000000..215893e0b3 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/319.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Electrical Cord" + }, + + illustrator: "Toyste Beach", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "If the {L} Pokémon this card is attached to is in the Active Spot and is Knocked Out by damage from an attack from your opponent's Pokémon, move 2 {L} Energy from that Pokémon and attach 1 Energy each to 2 of your Benched Pokémon." + }, + + trainerType: "Tool" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/320.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/320.ts" new file mode 100644 index 0000000000..d68987a465 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/320.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Giant Cape" + }, + + illustrator: "Ryo Ueda", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "The Pokémon this card is attached to gets +20 HP." + }, + + trainerType: "Tool" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/321.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/321.ts" new file mode 100644 index 0000000000..d68987a465 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/321.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Giant Cape" + }, + + illustrator: "Ryo Ueda", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "The Pokémon this card is attached to gets +20 HP." + }, + + trainerType: "Tool" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/322.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/322.ts" new file mode 100644 index 0000000000..b823e02e7c --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/322.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Rocky Helmet" + }, + + illustrator: "Ayaka Yoshida", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "If the Pokémon this card is attached to is in the Active Spot and is damaged by an attack from your opponent's Pokémon, do 20 damage to the Attacking Pokémon." + }, + + trainerType: "Tool" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/323.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/323.ts" new file mode 100644 index 0000000000..b823e02e7c --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/323.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Rocky Helmet" + }, + + illustrator: "Ayaka Yoshida", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "If the Pokémon this card is attached to is in the Active Spot and is damaged by an attack from your opponent's Pokémon, do 20 damage to the Attacking Pokémon." + }, + + trainerType: "Tool" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/324.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/324.ts" new file mode 100644 index 0000000000..8bdc4ada55 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/324.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Leaf Cape" + }, + + illustrator: "Toyste Beach", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "The {G} Pokémon this card is attached to gets +30 HP." + }, + + trainerType: "Tool" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/325.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/325.ts" new file mode 100644 index 0000000000..8bdc4ada55 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/325.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Leaf Cape" + }, + + illustrator: "Toyste Beach", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "The {G} Pokémon this card is attached to gets +30 HP." + }, + + trainerType: "Tool" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/326.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/326.ts" new file mode 100644 index 0000000000..d20b45777e --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/326.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Cyrus" + }, + + illustrator: "akagi", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Switch in 1 of your opponent's Benched Pokémon that has damage on it to the Active Spot." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/327.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/327.ts" new file mode 100644 index 0000000000..d20b45777e --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/327.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Cyrus" + }, + + illustrator: "akagi", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Switch in 1 of your opponent's Benched Pokémon that has damage on it to the Active Spot." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/328.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/328.ts" new file mode 100644 index 0000000000..8944c749b3 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/328.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Erika" + }, + + illustrator: "kirisAki", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Heal 50 damage from 1 of your {G} Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/329.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/329.ts" new file mode 100644 index 0000000000..8944c749b3 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/329.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Erika" + }, + + illustrator: "kirisAki", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Heal 50 damage from 1 of your {G} Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/330.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/330.ts" new file mode 100644 index 0000000000..340dfa8e44 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/330.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Irida" + }, + + illustrator: "Atsushi Furusawa", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Heal 40 damage from each of your Pokémon that has any {W} Energy attached." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/331.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/331.ts" new file mode 100644 index 0000000000..340dfa8e44 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/331.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Irida" + }, + + illustrator: "Atsushi Furusawa", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Heal 40 damage from each of your Pokémon that has any {W} Energy attached." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/332.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/332.ts" new file mode 100644 index 0000000000..a693fe7be4 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/332.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Lyra" + }, + + illustrator: "yuu", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Switch your Active Pokémon that has damage on it with 1 of your Benched Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/333.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/333.ts" new file mode 100644 index 0000000000..a693fe7be4 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/333.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Lyra" + }, + + illustrator: "yuu", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Switch your Active Pokémon that has damage on it with 1 of your Benched Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/334.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/334.ts" new file mode 100644 index 0000000000..0c8955e4a0 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/334.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Giovanni" + }, + + illustrator: "Hideki Ishikawa", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "During this turn, attacks used by your Pokémon do +10 damage to your opponent's Active Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/335.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/335.ts" new file mode 100644 index 0000000000..0c8955e4a0 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/335.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Giovanni" + }, + + illustrator: "Hideki Ishikawa", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "During this turn, attacks used by your Pokémon do +10 damage to your opponent's Active Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/337.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/337.ts" new file mode 100644 index 0000000000..5b4b882851 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/337.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Silver" + }, + + illustrator: "Hideki Ishikawa", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Your opponent reveals their hand. Choose a Supporter card you find there and shuffle it into your opponent's deck." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/339.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/339.ts" new file mode 100644 index 0000000000..d39933902b --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/339.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Sabrina" + }, + + illustrator: "Yuu Nishida", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Switch out your opponent's Active Pokémon to the Bench. (Your opponent chooses the new Active Pokémon.)" + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/340.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/340.ts" new file mode 100644 index 0000000000..61f7cf677d --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/340.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Iono" + }, + + illustrator: "saino misaki", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Each player shuffles the cards in their hand into their deck, then draws that many cards." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/341.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/341.ts" new file mode 100644 index 0000000000..61f7cf677d --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/341.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Iono" + }, + + illustrator: "saino misaki", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Each player shuffles the cards in their hand into their deck, then draws that many cards." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/343.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/343.ts" new file mode 100644 index 0000000000..22a15b461a --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/343.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Dawn" + }, + + illustrator: "saino misaki", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Move an Energy from 1 of your Benched Pokémon to your Active Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/344.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/344.ts" new file mode 100644 index 0000000000..429d2bdbf2 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/344.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Mars" + }, + + illustrator: "Yuu Nishida", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Your opponent shuffles their hand into their deck and draws a card for each of their remaining points needed to win." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/345.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/345.ts" new file mode 100644 index 0000000000..429d2bdbf2 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/345.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Mars" + }, + + illustrator: "Yuu Nishida", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Your opponent shuffles their hand into their deck and draws a card for each of their remaining points needed to win." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/346.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/346.ts" new file mode 100644 index 0000000000..624d6dba7e --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/346.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Leaf" + }, + + illustrator: "En Morikura", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "During this turn, the Retreat Cost of your Active Pokémon is 2 less." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/347.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/347.ts" new file mode 100644 index 0000000000..624d6dba7e --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/347.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Leaf" + }, + + illustrator: "En Morikura", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "During this turn, the Retreat Cost of your Active Pokémon is 2 less." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/348.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/348.ts" new file mode 100644 index 0000000000..03089b6195 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/348.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Lillie" + }, + + illustrator: "hechima", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Heal 60 damage from 1 of your Stage 2 Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/349.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/349.ts" new file mode 100644 index 0000000000..03089b6195 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/349.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Lillie" + }, + + illustrator: "hechima", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Heal 60 damage from 1 of your Stage 2 Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/350.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/350.ts" new file mode 100644 index 0000000000..477e68a941 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/350.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Lusamine" + }, + + illustrator: "Taira Akitsu", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "You can use this card only if your opponent has gotten at least 1 point.\n\nChoose 1 of your Ultra Beasts. Attach 2 random Energy from your discard pile to that Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/351.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/351.ts" new file mode 100644 index 0000000000..477e68a941 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/351.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Lusamine" + }, + + illustrator: "Taira Akitsu", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "You can use this card only if your opponent has gotten at least 1 point.\n\nChoose 1 of your Ultra Beasts. Attach 2 random Energy from your discard pile to that Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/352.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/352.ts" new file mode 100644 index 0000000000..689781a62d --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/352.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Red" + }, + + illustrator: "Teeziro", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "During this turn, attacks used by your Pokémon do +20 damage to your opponent's Active Pokémon ex." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/353.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/353.ts" new file mode 100644 index 0000000000..689781a62d --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/353.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Red" + }, + + illustrator: "Teeziro", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "During this turn, attacks used by your Pokémon do +20 damage to your opponent's Active Pokémon ex." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/354.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/354.ts" new file mode 100644 index 0000000000..c039d2d683 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/354.ts" @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Floragato" + }, + + illustrator: "Kariya", + rarity: "One Star", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + evolveFrom: { + en: "Sprigatito" + }, + + description: { + en: "Floragato deftly wields the vine hidden beneath\nits long fur, slamming the hard flower bud against\nits opponents." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Slash" + }, + + damage: 40, + cost: ["Grass", "Grass"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/355.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/355.ts" new file mode 100644 index 0000000000..caa6676348 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/355.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Crawdaunt" + }, + + illustrator: "REND", + rarity: "One Star", + category: "Pokemon", + hp: 100, + types: ["Water"], + + evolveFrom: { + en: "Corphish" + }, + + description: { + en: "A rough customer that wildly flails its giant claws.\nIt is said to be extremely hard to raise." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Unruly Claw" + }, + + effect: { + en: "Once during your turn, when you play this Pokémon from your hand to evolve 1 of your Pokémon, you may discard a random Energy from your opponent's Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Crabhammer" + }, + + damage: 70, + cost: ["Water", "Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/356.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/356.ts" new file mode 100644 index 0000000000..b8768e8c16 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/356.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Greninja" + }, + + illustrator: "Noriaki Tanimura", + rarity: "One Star", + category: "Pokemon", + hp: 120, + types: ["Water"], + + evolveFrom: { + en: "Frogadier" + }, + + description: { + en: "It creates throwing stars out of compressed water.\nWhen it spins them and throws them at high speed,\nthese stars can split metal in two." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Water Shuriken" + }, + + effect: { + en: "Once during your turn, you may do 20 damage to 1 of your opponent's Pokémon." + } + }], + + attacks: [{ + name: { + en: "Mist Slash" + }, + + damage: 60, + cost: ["Water", "Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/357.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/357.ts" new file mode 100644 index 0000000000..6013927acb --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/357.ts" @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Gardevoir" + }, + + illustrator: "Tomomi Ozaki", + rarity: "One Star", + category: "Pokemon", + hp: 110, + types: ["Psychic"], + + evolveFrom: { + en: "Kirlia" + }, + + description: { + en: "To protect its Trainer, it will expend all its psychic\npower to create a small black hole." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Psy Shadow" + }, + + effect: { + en: "Once during your turn, you may take a {P} Energy from your Energy Zone and attach it to the {P} Pokémon in the Active Spot." + } + }], + + attacks: [{ + name: { + en: "Psyshot" + }, + + damage: 60, + cost: ["Psychic", "Psychic", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/358.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/358.ts" new file mode 100644 index 0000000000..8b64f31a37 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/358.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Slurpuff" + }, + + illustrator: "Orca", + rarity: "One Star", + category: "Pokemon", + hp: 120, + types: ["Psychic"], + + evolveFrom: { + en: "Swirlix" + }, + + description: { + en: "By taking in a person's scent, it can sniff out their\nmental and physical condition. It's hoped that\nthis skill will have many medical applications." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Sweets Relay" + }, + + damage: 30, + cost: ["Colorless", "Colorless"], + + effect: { + en: "If 1 of your Pokémon used Sweets Relay during your last turn, this attack does 60 more damage." + } + }], + + weaknesses: [{ + type: "Metal", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/359.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/359.ts" new file mode 100644 index 0000000000..d991ccb700 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/359.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Farfetch'd" + }, + + illustrator: "Uninori", + rarity: "One Star", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "The stalk this Pokémon carries in its wings serves\nas a sword to cut down opponents. In a dire\nsituation, the stalk can also serve as food." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Leek Slap" + }, + + damage: 40, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/360.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/360.ts" new file mode 100644 index 0000000000..3880470687 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/360.ts" @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Buzzwole ex" + }, + + illustrator: "5ban Graphics", + rarity: "Two Star", + category: "Pokemon", + hp: 140, + types: ["Grass"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Punch" + }, + + damage: 30, + cost: ["Colorless", "Colorless"] + }, { + name: { + en: "Big Beat" + }, + + damage: 120, + cost: ["Grass", "Grass", "Colorless"], + + effect: { + en: "During your next turn, this Pokémon can't use Big Beat." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/361.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/361.ts" new file mode 100644 index 0000000000..686609c2b5 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/361.ts" @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Charizard ex" + }, + + illustrator: "5ban Graphics", + rarity: "Two Star", + category: "Pokemon", + hp: 180, + types: ["Fire"], + + evolveFrom: { + en: "Charmeleon" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Slash" + }, + + damage: 60, + cost: ["Fire", "Colorless", "Colorless"] + }, { + name: { + en: "Crimson Storm" + }, + + damage: 200, + cost: ["Fire", "Fire", "Colorless", "Colorless"], + + effect: { + en: "Discard 2 {R} Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/362.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/362.ts" new file mode 100644 index 0000000000..0cb39f7507 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/362.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Ho-Oh ex" + }, + + illustrator: "5ban Graphics", + rarity: "Two Star", + category: "Pokemon", + hp: 150, + types: ["Fire"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Phoenix Turbo" + }, + + damage: 80, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "Take a {R}, {W}, and {L} Energy from your Energy Zone and attach them to your Benched Basic Pokémon in any way you like." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/363.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/363.ts" new file mode 100644 index 0000000000..9d8ef818e5 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/363.ts" @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Palkia ex" + }, + + illustrator: "5ban Graphics", + rarity: "Two Star", + category: "Pokemon", + hp: 150, + types: ["Water"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Slash" + }, + + damage: 30, + cost: ["Water"] + }, { + name: { + en: "Dimensional Storm" + }, + + damage: 150, + cost: ["Water", "Water", "Water", "Colorless"], + + effect: { + en: "Discard 3 {W} Energy from this Pokémon. This attack also does 20 damage to each of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/364.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/364.ts" new file mode 100644 index 0000000000..6004017738 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/364.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex" + }, + + illustrator: "5ban Graphics", + rarity: "Two Star", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Circle Circuit" + }, + + damage: 30, + cost: ["Lightning", "Lightning"], + + effect: { + en: "This attack does 30 damage for each of your Benched {L} Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/365.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/365.ts" new file mode 100644 index 0000000000..4dd4efd728 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/365.ts" @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Mewtwo ex" + }, + + illustrator: "5ban Graphics", + rarity: "Two Star", + category: "Pokemon", + hp: 150, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Psychic Sphere" + }, + + damage: 50, + cost: ["Psychic", "Colorless"] + }, { + name: { + en: "Psydrive" + }, + + damage: 150, + cost: ["Psychic", "Psychic", "Colorless", "Colorless"], + + effect: { + en: "Discard 2 {P} Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/366.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/366.ts" new file mode 100644 index 0000000000..86f0672027 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/366.ts" @@ -0,0 +1,46 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Mew ex" + }, + + illustrator: "5ban Graphics", + rarity: "Two Star", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Psyshot" + }, + + damage: 20, + cost: ["Psychic"] + }, { + name: { + en: "Genome Hacking" + }, + + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "Choose 1 of your opponent's Active Pokémon's attacks and use it as this attack." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/367.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/367.ts" new file mode 100644 index 0000000000..d4c21dca4d --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/367.ts" @@ -0,0 +1,53 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Lunala ex" + }, + + illustrator: "5ban Graphics", + rarity: "Two Star", + category: "Pokemon", + hp: 180, + types: ["Psychic"], + + evolveFrom: { + en: "Cosmoem" + }, + + stage: "Stage2", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Psychic Connect" + }, + + effect: { + en: "Once during your turn, you may move all {P} Energy from 1 of your Benched {P} Pokémon to your Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Lunar Blast" + }, + + damage: 100, + cost: ["Psychic", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/368.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/368.ts" new file mode 100644 index 0000000000..b5fe84ed1c --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/368.ts" @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Dialga ex" + }, + + illustrator: "5ban Graphics", + rarity: "Two Star", + category: "Pokemon", + hp: 150, + types: ["Metal"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Metallic Turbo" + }, + + damage: 30, + cost: ["Metal", "Metal"], + + effect: { + en: "Take 2 {M} Energy from your Energy Zone and attach it to 1 of your Benched Pokémon." + } + }, { + name: { + en: "Heavy Impact" + }, + + damage: 100, + cost: ["Metal", "Metal", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/369.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/369.ts" new file mode 100644 index 0000000000..46cf8f4b16 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/369.ts" @@ -0,0 +1,57 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Solgaleo ex" + }, + + illustrator: "5ban Graphics", + rarity: "Two Star", + category: "Pokemon", + hp: 180, + types: ["Metal"], + + evolveFrom: { + en: "Cosmoem" + }, + + stage: "Stage2", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Rising Road" + }, + + effect: { + en: "Once during your turn, if this Pokémon is on your Bench, you may switch it with your Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Sol Breaker" + }, + + damage: 120, + cost: ["Metal", "Metal"], + + effect: { + en: "This Pokémon also does 10 damage to itself." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/370.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/370.ts" new file mode 100644 index 0000000000..9d1da04395 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/370.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Eevee ex" + }, + + illustrator: "5ban Graphics", + rarity: "Two Star", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Veevee 'volve" + }, + + effect: { + en: "This Pokémon can evolve into any Pokémon that evolves from Eevee if you play it from your hand onto this Pokémon. (This Pokémon can't evolve during your first turn or the turn you play it.)" + } + }], + + attacks: [{ + name: { + en: "Bite" + }, + + damage: 30, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/371.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/371.ts" new file mode 100644 index 0000000000..ebe35c859c --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/371.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Lugia ex" + }, + + illustrator: "5ban Graphics", + rarity: "Two Star", + category: "Pokemon", + hp: 150, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Elemental Blast" + }, + + damage: 180, + cost: ["Fire", "Water", "Lightning"], + + effect: { + en: "Discard a {R}, {W}, and {L} Energy from this Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/372.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/372.ts" new file mode 100644 index 0000000000..60ed237091 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/372.ts" @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Arceus ex" + }, + + illustrator: "5ban Graphics", + rarity: "Two Star", + category: "Pokemon", + hp: 140, + types: ["Colorless"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Fabled Luster" + }, + + effect: { + en: "This Pokémon can't be affected by any Special Conditions." + } + }], + + attacks: [{ + name: { + en: "Ultimate Force" + }, + + damage: 70, + cost: ["Colorless", "Colorless", "Colorless"], + + effect: { + en: "This attack does 20 more damage for each of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/373.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/373.ts" new file mode 100644 index 0000000000..892f1c6f11 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/373.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Professor's Research" + }, + + illustrator: "Akira Komayama", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "Draw 2 cards." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/374.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/374.ts" new file mode 100644 index 0000000000..4ddf2df8d3 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/374.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Lillie" + }, + + illustrator: "yuu", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "Heal 60 damage from 1 of your Stage 2 Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/375.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/375.ts" new file mode 100644 index 0000000000..b5bc94f09d --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/375.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Lusamine" + }, + + illustrator: "Taira Akitsu", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "You can use this card only if your opponent has gotten at least 1 point.\n\nChoose 1 of your Ultra Beasts. Attach 2 random Energy from your discard pile to that Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/376.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/376.ts" new file mode 100644 index 0000000000..0ad433f70c --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/376.ts" @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex" + }, + + illustrator: "kantaro", + rarity: "Three Star", + category: "Pokemon", + hp: 120, + types: ["Lightning"], + stage: "Basic", + suffix: "EX", + + attacks: [{ + name: { + en: "Circle Circuit" + }, + + damage: 30, + cost: ["Lightning", "Lightning"], + + effect: { + en: "This attack does 30 damage for each of your Benched {L} Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/377.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/377.ts" new file mode 100644 index 0000000000..4ced3792b3 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/377.ts" @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Giratina ex" + }, + + illustrator: "PLANETA Yamashita", + rarity: "Two Shiny", + category: "Pokemon", + hp: 150, + types: ["Psychic"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Broken-Space Bellow" + }, + + effect: { + en: "Once during your turn, you may take a {P} Energy from your Energy Zone and attach it to this Pokémon. If you use this Ability, your turn ends." + } + }], + + attacks: [{ + name: { + en: "Chaotic Impact" + }, + + damage: 130, + cost: ["Psychic", "Psychic", "Psychic", "Colorless"], + + effect: { + en: "This Pokémon also does 20 damage to itself." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/378.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/378.ts" new file mode 100644 index 0000000000..b69e44b1ac --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/378.ts" @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Darkrai ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Two Shiny", + category: "Pokemon", + hp: 140, + types: ["Darkness"], + stage: "Basic", + suffix: "EX", + + abilities: [{ + type: "Ability", + + name: { + en: "Nightmare Aura" + }, + + effect: { + en: "Whenever you attach a {D} Energy from your Energy Zone to this Pokémon, do 20 damage to your opponent's Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Dark Prism" + }, + + damage: 80, + cost: ["Darkness", "Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git "a/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/379.ts" "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/379.ts" new file mode 100644 index 0000000000..f90b1d3353 --- /dev/null +++ "b/data/Pok\303\251mon TCG Pocket/Deluxe Pack: ex/379.ts" @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Deluxe Pack: ex" + +const card: Card = { + set: Set, + + name: { + en: "Rare Candy" + }, + + illustrator: "Toyste Beach", + rarity: "Crown", + category: "Trainer", + + effect: { + en: "Choose 1 of your Basic Pokémon in play. If you have a Stage 2 card in your hand that evolves from that Pokémon, put that card onto the Basic Pokémon to evolve it, skipping the Stage 1. You can't use this card during your first turn or on a Basic Pokémon that was put into play this turn." + }, + + trainerType: "Item" +} + +export default card \ No newline at end of file