diff --git a/data/Pokémon TCG Pocket/Shining Revelry.ts b/data/Pokémon TCG Pocket/Shining Revelry.ts new file mode 100644 index 000000000..dec5f6219 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry.ts @@ -0,0 +1,25 @@ +import { Set } from '../../interfaces' +import serie from '../Pokémon TCG Pocket' + +const set: Set = { + id: "A2b", + + name: { + // de: "Unschlagbare Gene", + en: "Shining Revelry", + // es: "Genes Formidables", + // fr: "Puissance Génétique", + // it: "Geni Supremi", + // pt: "Dominação Genética" + }, + + serie: serie, + + cardCount: { + official: 78 + }, + + releaseDate: "2025-03-27" +} + +export default set diff --git a/data/Pokémon TCG Pocket/Shining Revelry/001.ts b/data/Pokémon TCG Pocket/Shining Revelry/001.ts new file mode 100644 index 000000000..a611a350c --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/001.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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. It has a sharp, toxic barb of around two inches on 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émon TCG Pocket/Shining Revelry/002.ts b/data/Pokémon TCG Pocket/Shining Revelry/002.ts new file mode 100644 index 000000000..8f089fcb4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/002.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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 harden its shell to protect itself when it is in 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émon TCG Pocket/Shining Revelry/003.ts b/data/Pokémon TCG Pocket/Shining Revelry/003.ts new file mode 100644 index 000000000..87b5f8434 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/003.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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émon TCG Pocket/Shining Revelry/004.ts b/data/Pokémon TCG Pocket/Shining Revelry/004.ts new file mode 100644 index 000000000..afefa17ef --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/004.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pinsir" + }, + + illustrator: "Satoshi Shirai", + rarity: "One Diamond", + category: "Pokemon", + hp: 90, + types: ["Grass"], + + description: { + en: "These Pokémon judge one another based on pincers. Thicker, more impressive pincers make for more popularity with the opposite gender." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Guillotine Rush" + }, + + damage: 50, + cost: ["Grass", "Colorless", "Colorless"], + + effect: { + en: "Flip a coin until you get tails. This attack does 40 more damage for each heads." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/005.ts b/data/Pokémon TCG Pocket/Shining Revelry/005.ts new file mode 100644 index 000000000..44670ebc9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/005.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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. This Pokémon frequently washes its face to keep it from drying out." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Cry for Help" + }, + + cost: ["Grass"], + + effect: { + en: "Put 1 random 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émon TCG Pocket/Shining Revelry/006.ts b/data/Pokémon TCG Pocket/Shining Revelry/006.ts new file mode 100644 index 000000000..2950b82d1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/006.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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 its long fur, slamming the hard flower bud against its 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émon TCG Pocket/Shining Revelry/007.ts b/data/Pokémon TCG Pocket/Shining Revelry/007.ts new file mode 100644 index 000000000..f9f2743e3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/007.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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 cape to camouflage the stem of its flower, creating 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émon TCG Pocket/Shining Revelry/008.ts b/data/Pokémon TCG Pocket/Shining Revelry/008.ts new file mode 100644 index 000000000..d4c237be4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/008.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Charmander" + }, + + illustrator: "Megumi Mizutani", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + en: "It has a preference for hot things. When it rains, steam is said to spout from the tip of its tail." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Combustion" + }, + + 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émon TCG Pocket/Shining Revelry/009.ts b/data/Pokémon TCG Pocket/Shining Revelry/009.ts new file mode 100644 index 000000000..731b480d3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/009.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Charmeleon" + }, + + illustrator: "kodama", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Fire"], + + evolveFrom: { + en: "Charmander" + }, + + description: { + en: "It has a barbaric nature. In battle, it whips its fiery tail around and slashes away with sharp claws." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Combustion" + }, + + damage: 40, + cost: ["Fire", "Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/010.ts b/data/Pokémon TCG Pocket/Shining Revelry/010.ts new file mode 100644 index 000000000..a35bdf3df --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/010.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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 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émon TCG Pocket/Shining Revelry/011.ts b/data/Pokémon TCG Pocket/Shining Revelry/011.ts new file mode 100644 index 000000000..5874c894a --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/011.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Magmar" + }, + + illustrator: "Miki Tanaka", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Fire"], + + description: { + en: "Magmar dispatches its prey with fire. But it regrets this habit once it realizes that it has burned its intended prey to a charred crisp." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Flare" + }, + + 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émon TCG Pocket/Shining Revelry/012.ts b/data/Pokémon TCG Pocket/Shining Revelry/012.ts new file mode 100644 index 000000000..e6ac2164b --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/012.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Magmortar" + }, + + illustrator: "Miki Tanaka", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Fire"], + + evolveFrom: { + en: "Magmar" + }, + + description: { + en: "When Magmortar inhales deeply, the fire burning in its belly intensifies, rising in temperature to over 3,600 degrees Fahrenheit." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Smoke Bomb" + }, + + damage: 70, + cost: ["Fire", "Fire", "Colorless"], + + effect: { + en: "During your opponent's next turn, if the Defending Pokémon tries to use an attack, your opponent flips a coin. If tails, that attack doesn't happen." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/013.ts b/data/Pokémon TCG Pocket/Shining Revelry/013.ts new file mode 100644 index 000000000..0ba6404bc --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/013.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Paldean Tauros" + }, + + illustrator: "Minahamu", + rarity: "Two Diamond", + category: "Pokemon", + hp: 110, + types: ["Fire"], + + description: { + en: "When heated by fire energy, its horns can get hotter than 1,800 degrees Fahrenheit. Those gored by them will suffer both wounds and burns." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Blaze Tackle" + }, + + damage: 80, + cost: ["Fire", "Colorless", "Colorless"], + + effect: { + en: "This Pokémon also does 10 damage to itself." + } + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/014.ts b/data/Pokémon TCG Pocket/Shining Revelry/014.ts new file mode 100644 index 000000000..0c9619088 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/014.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Tentacool" + }, + + illustrator: "Shibuzoh.", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + en: "Tentacool is not a particularly strong swimmer. It drifts across the surface of shallow seas as it searches for prey." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Rain Splash" + }, + + damage: 10, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/015.ts b/data/Pokémon TCG Pocket/Shining Revelry/015.ts new file mode 100644 index 000000000..fdc56d9ef --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/015.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Tentacruel" + }, + + illustrator: "match", + rarity: "Two Diamond", + category: "Pokemon", + hp: 100, + types: ["Water"], + + evolveFrom: { + en: "Tentacool" + }, + + description: { + en: "When the red orbs on Tentacruel's head glow brightly, watch out. The Pokémon is about to fire off a burst of ultrasonic waves." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Wave Splash" + }, + + damage: 40, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/016.ts b/data/Pokémon TCG Pocket/Shining Revelry/016.ts new file mode 100644 index 000000000..e466b4e3a --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/016.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Buizel" + }, + + illustrator: "sui", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + en: "It inflates its flotation sac, keeping its face above water in order to watch for prey movement." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Water Gun" + }, + + damage: 10, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/017.ts b/data/Pokémon TCG Pocket/Shining Revelry/017.ts new file mode 100644 index 000000000..385ff9845 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/017.ts @@ -0,0 +1,47 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Floatzel" + }, + + illustrator: "Kouki Saitou", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Water"], + + evolveFrom: { + en: "Buizel" + }, + + description: { + en: "With its flotation sac inflated, it can carry people on its back. It deflates the sac before it dives." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Water Arrow" + }, + + cost: ["Water"], + + effect: { + en: "This attack does 30 damage to 1 of your opponent's Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/018.ts b/data/Pokémon TCG Pocket/Shining Revelry/018.ts new file mode 100644 index 000000000..bf09929c1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/018.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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 just over 65 feet away and will hide itself in the 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émon TCG Pocket/Shining Revelry/019.ts b/data/Pokémon TCG Pocket/Shining Revelry/019.ts new file mode 100644 index 000000000..1408fd8c4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/019.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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émon TCG Pocket/Shining Revelry/020.ts b/data/Pokémon TCG Pocket/Shining Revelry/020.ts new file mode 100644 index 000000000..f922e8c32 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/020.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Dondozo" + }, + + illustrator: "Tomowaka", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Water"], + + description: { + en: "This Pokémon is a glutton, but it's bad at getting food. It teams up with a Tatsugiri to catch prey." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Ocean Cyclone" + }, + + damage: 80, + cost: ["Water", "Water", "Colorless", "Colorless"], + + effect: { + en: "This attack also does 10 damage to each of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/021.ts b/data/Pokémon TCG Pocket/Shining Revelry/021.ts new file mode 100644 index 000000000..33546395c --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/021.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Tatsugiri" + }, + + illustrator: "Tomowaka", + rarity: "Two Diamond", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + en: "This is a small dragon Pokémon. It lives inside the mouth of Dondozo to protect itself from enemies on the outside." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Retreat Directive" + }, + + effect: { + en: "Your Active Dondozo has no Retreat Cost." + } + }], + + attacks: [{ + name: { + en: "Rain Splash" + }, + + 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émon TCG Pocket/Shining Revelry/022.ts b/data/Pokémon TCG Pocket/Shining Revelry/022.ts new file mode 100644 index 000000000..75fb28178 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/022.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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émon TCG Pocket/Shining Revelry/023.ts b/data/Pokémon TCG Pocket/Shining Revelry/023.ts new file mode 100644 index 000000000..5eaa8ddab --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/023.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Voltorb" + }, + + illustrator: "Masakazu Fukuda", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + + description: { + en: "It rolls to move. If the ground is uneven, a sudden jolt from hitting a bump can cause it to explode." + }, + + 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émon TCG Pocket/Shining Revelry/024.ts b/data/Pokémon TCG Pocket/Shining Revelry/024.ts new file mode 100644 index 000000000..4f22761fe --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/024.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Electrode" + }, + + illustrator: "Shigenori Negishi", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Lightning"], + + evolveFrom: { + en: "Voltorb" + }, + + description: { + en: "The more energy it charges up, the faster it gets. But this also makes it more likely to explode." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Tumbling Attack" + }, + + damage: 50, + cost: ["Lightning", "Lightning"], + + effect: { + en: "Flip a coin. If heads, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/025.ts b/data/Pokémon TCG Pocket/Shining Revelry/025.ts new file mode 100644 index 000000000..83b66748f --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/025.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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 cheek pouches. It shoots charges from its tail." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Plasma" + }, + + damage: 10, + cost: ["Lightning"], + + effect: { + en: "Take a 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émon TCG Pocket/Shining Revelry/026.ts b/data/Pokémon TCG Pocket/Shining Revelry/026.ts new file mode 100644 index 000000000..7c14596a6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/026.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pawmi" + }, + + illustrator: "Saboteri", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Lightning"], + + description: { + en: "It has underdeveloped electric sacs on its cheeks. These sacs can produce electricity only if Pawmi rubs them furiously with the pads on its forepaws." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Punch" + }, + + 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émon TCG Pocket/Shining Revelry/027.ts b/data/Pokémon TCG Pocket/Shining Revelry/027.ts new file mode 100644 index 000000000..1d85b82e6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/027.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pawmo" + }, + + illustrator: "Saboteri", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Lightning"], + + evolveFrom: { + en: "Pawmi" + }, + + description: { + en: "When its group is attacked, Pawmo is the first to leap into battle, defeating enemies with a fighting technique that utilizes electric shocks." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Punch" + }, + + damage: 40, + cost: ["Lightning", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/028.ts b/data/Pokémon TCG Pocket/Shining Revelry/028.ts new file mode 100644 index 000000000..f7a97479c --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/028.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pawmot" + }, + + illustrator: "Saboteri", + rarity: "Three Diamond", + category: "Pokemon", + hp: 140, + types: ["Lightning"], + + evolveFrom: { + en: "Pawmo" + }, + + description: { + en: "This Pokémon normally is slow to react, but once it enters battle, it will strike down its enemies with lightning-fast movements." + }, + + stage: "Stage2", + + abilities: [{ + type: "Ability", + + name: { + en: "Counterattack" + }, + + effect: { + en: "If this Pokémon 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." + } + }], + + attacks: [{ + name: { + en: "Electric Punch" + }, + + damage: 70, + cost: ["Lightning", "Lightning"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 0 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/029.ts b/data/Pokémon TCG Pocket/Shining Revelry/029.ts new file mode 100644 index 000000000..9c37c0ed4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/029.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Abra" + }, + + illustrator: "Mousho", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "This Pokémon uses its psychic powers while it sleeps. The contents of Abra's dreams affect the powers that the Pokémon wields." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Psyshot" + }, + + 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émon TCG Pocket/Shining Revelry/030.ts b/data/Pokémon TCG Pocket/Shining Revelry/030.ts new file mode 100644 index 000000000..06ccc60ab --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/030.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Kadabra" + }, + + illustrator: "Mousho", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Psychic"], + + evolveFrom: { + en: "Abra" + }, + + description: { + en: "Using its psychic power, Kadabra levitates as it sleeps. It uses its springy tail as a pillow." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Psyshot" + }, + + 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émon TCG Pocket/Shining Revelry/031.ts b/data/Pokémon TCG Pocket/Shining Revelry/031.ts new file mode 100644 index 000000000..ef55c44da --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/031.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Alakazam" + }, + + illustrator: "Mousho", + rarity: "Three Diamond", + category: "Pokemon", + hp: 130, + types: ["Psychic"], + + evolveFrom: { + en: "Kadabra" + }, + + description: { + en: "It has an incredibly high level of intelligence. Some say that Alakazam remembers everything that ever happens to it, from birth till death." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Psychic Suppression" + }, + + damage: 80, + cost: ["Psychic", "Psychic"], + + effect: { + en: "This attack also does 20 damage to each of your opponent's Benched Pokémon that has any Energy attached." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/032.ts b/data/Pokémon TCG Pocket/Shining Revelry/032.ts new file mode 100644 index 000000000..5871146eb --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/032.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Mr. Mime" + }, + + illustrator: "Atsuko Nishida", + rarity: "One Diamond", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + + description: { + en: "The broadness of its hands may be no coincidence—many scientists believe its palms became enlarged specifically for pantomiming." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Juggling" + }, + + damage: 20, + cost: ["Psychic", "Colorless"], + + effect: { + en: "Flip 4 coins. This attack does 20 damage for each heads." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/033.ts b/data/Pokémon TCG Pocket/Shining Revelry/033.ts new file mode 100644 index 000000000..5a3da6c75 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/033.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Drifloon" + }, + + illustrator: "kodama", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "It is whispered that any child who mistakes Drifloon for a balloon and holds on to it could wind up missing." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Ram" + }, + + 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émon TCG Pocket/Shining Revelry/034.ts b/data/Pokémon TCG Pocket/Shining Revelry/034.ts new file mode 100644 index 000000000..0d0dd0871 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/034.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Drifblim" + }, + + illustrator: "Hajime Kusajima", + rarity: "Two Diamond", + category: "Pokemon", + hp: 90, + types: ["Psychic"], + + evolveFrom: { + en: "Drifloon" + }, + + description: { + en: "It can generate and release gas within its body. That's how it can control the altitude of its drift." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Gust" + }, + + damage: 40, + cost: ["Psychic"] + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 0 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/035.ts b/data/Pokémon TCG Pocket/Shining Revelry/035.ts new file mode 100644 index 000000000..0b5fc04f7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/035.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Giratina ex" + }, + + illustrator: "PLANETA Yamashita", + rarity: "Four Diamond", + 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 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émon TCG Pocket/Shining Revelry/036.ts b/data/Pokémon TCG Pocket/Shining Revelry/036.ts new file mode 100644 index 000000000..a4030c978 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/036.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Gimmighoul" + }, + + illustrator: "HYOGONOSUKE", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Psychic"], + + description: { + en: "This Pokémon was born inside a treasure chest about 1,500 years ago. It sucks the life-force out of scoundrels who try to steal the treasure." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Chest-ouflage" + }, + + cost: ["Colorless"], + + effect: { + en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from—and effects of—attacks done to this Pokémon." + } + }], + + weaknesses: [{ + type: "Darkness", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/037.ts b/data/Pokémon TCG Pocket/Shining Revelry/037.ts new file mode 100644 index 000000000..34b7c0fd7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/037.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Machop" + }, + + illustrator: "Mina Nakai", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Fighting"], + + description: { + en: "Its whole body is composed of muscles. Even though it's the size of a human child, it can hurl 100 grown-ups." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Low Kick" + }, + + damage: 20, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/038.ts b/data/Pokémon TCG Pocket/Shining Revelry/038.ts new file mode 100644 index 000000000..e6e49cae3 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/038.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Machoke" + }, + + illustrator: "Kouki Saitou", + rarity: "One Diamond", + category: "Pokemon", + hp: 100, + types: ["Fighting"], + + evolveFrom: { + en: "Machop" + }, + + description: { + en: "Its muscular body is so powerful, it must wear a power-save belt to be able to regulate its motions." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Pummel" + }, + + damage: 30, + cost: ["Fighting", "Fighting"], + + effect: { + en: "Flip a coin. If heads, this attack does 30 more damage." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/039.ts b/data/Pokémon TCG Pocket/Shining Revelry/039.ts new file mode 100644 index 000000000..71fa798c7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/039.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Machamp" + }, + + illustrator: "Kouki Saitou", + rarity: "Three Diamond", + category: "Pokemon", + hp: 150, + types: ["Fighting"], + + evolveFrom: { + en: "Machoke" + }, + + description: { + en: "It quickly swings its four arms to rock its opponents with ceaseless punches and chops from all angles." + }, + + stage: "Stage2", + + attacks: [{ + name: { + en: "Power Press" + }, + + damage: 70, + cost: ["Fighting", "Fighting"], + + effect: { + en: "If this Pokémon has at least 2 extra Energy attached, this attack does 50 more damage." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/040.ts b/data/Pokémon TCG Pocket/Shining Revelry/040.ts new file mode 100644 index 000000000..9125ff6c7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/040.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Hitmonlee" + }, + + illustrator: "Tomokazu Komiya", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + en: "This amazing Pokémon has an awesome sense of balance. It can kick in succession from any position." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Kick" + }, + + damage: 30, + cost: ["Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/041.ts b/data/Pokémon TCG Pocket/Shining Revelry/041.ts new file mode 100644 index 000000000..e342bf3ae --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/041.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Hitmonchan" + }, + + illustrator: "Tomokazu Komiya", + rarity: "One Diamond", + category: "Pokemon", + hp: 90, + types: ["Fighting"], + + description: { + en: "Its punches slice the air. They are launched at such high speed, even a slight graze could cause a burn." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Magnum Punch" + }, + + damage: 90, + cost: ["Fighting", "Fighting", "Fighting"] + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/042.ts b/data/Pokémon TCG Pocket/Shining Revelry/042.ts new file mode 100644 index 000000000..a8b3e22f7 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/042.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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 auras. 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émon TCG Pocket/Shining Revelry/043.ts b/data/Pokémon TCG Pocket/Shining Revelry/043.ts new file mode 100644 index 000000000..697f72af1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/043.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Lucario ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Four Diamond", + category: "Pokemon", + hp: 150, + types: ["Fighting"], + + evolveFrom: { + en: "Riolu" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Aura Sphere" + }, + + damage: 100, + cost: ["Fighting", "Fighting", "Fighting"], + + effect: { + en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/044.ts b/data/Pokémon TCG Pocket/Shining Revelry/044.ts new file mode 100644 index 000000000..bc4f9de66 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/044.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Flamigo" + }, + + illustrator: "REND", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Fighting"], + + description: { + en: "This Pokémon apparently ties the base of its neck into a knot so that energy stored in its belly does not escape from its beak." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Double Kick" + }, + + damage: 50, + cost: ["Fighting", "Fighting"], + + effect: { + en: "Flip 2 coins. This attack does 50 damage for each heads." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/045.ts b/data/Pokémon TCG Pocket/Shining Revelry/045.ts new file mode 100644 index 000000000..8950e9a26 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/045.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Ekans" + }, + + illustrator: "Midori Harada", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Darkness"], + + description: { + en: "By dislocating its jaw, it can swallow prey larger than itself. After a meal, it curls up and rests." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Ram" + }, + + damage: 30, + cost: ["Darkness", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/046.ts b/data/Pokémon TCG Pocket/Shining Revelry/046.ts new file mode 100644 index 000000000..a4a3b958e --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/046.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Arbok" + }, + + illustrator: "Midori Harada", + rarity: "Two Diamond", + category: "Pokemon", + hp: 110, + types: ["Darkness"], + + evolveFrom: { + en: "Ekans" + }, + + description: { + en: "After stunning its opponents with the pattern on its stomach, it quickly wraps them up in its body and waits for them to stop moving." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Venomous Fang" + }, + + damage: 70, + cost: ["Darkness", "Darkness", "Colorless"], + + effect: { + en: "Your opponent's Active Pokémon is now Poisoned." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/047.ts b/data/Pokémon TCG Pocket/Shining Revelry/047.ts new file mode 100644 index 000000000..1fc1f34a1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/047.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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 living on land. The Pokémon changed over time, developing 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émon TCG Pocket/Shining Revelry/048.ts b/data/Pokémon TCG Pocket/Shining Revelry/048.ts new file mode 100644 index 000000000..a74b71999 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/048.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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émon TCG Pocket/Shining Revelry/049.ts b/data/Pokémon TCG Pocket/Shining Revelry/049.ts new file mode 100644 index 000000000..4c30d26d8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/049.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Spiritomb" + }, + + illustrator: "Shin Nagasawa", + rarity: "Two Diamond", + category: "Pokemon", + hp: 80, + types: ["Darkness"], + + description: { + en: "Its constant mischief and misdeeds resulted in it being bound to an Odd Keystone by a mysterious spell." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Confuse Ray" + }, + + damage: 20, + cost: ["Darkness"], + + effect: { + en: "Flip a coin. If heads, your opponent's Active Pokémon is now Confused." + } + }], + + weaknesses: [{ + type: "Grass", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/050.ts b/data/Pokémon TCG Pocket/Shining Revelry/050.ts new file mode 100644 index 000000000..515d94a77 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/050.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Shroodle" + }, + + illustrator: "Krgc", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Darkness"], + + description: { + en: "Though usually a mellow Pokémon, it will sink its sharp, poison-soaked front teeth into any that anger it, causing paralysis in the object of its ire." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Gnaw" + }, + + 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émon TCG Pocket/Shining Revelry/051.ts b/data/Pokémon TCG Pocket/Shining Revelry/051.ts new file mode 100644 index 000000000..c145eff5f --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/051.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Grafaiai" + }, + + illustrator: "Krgc", + rarity: "Three Diamond", + category: "Pokemon", + hp: 90, + types: ["Darkness"], + + evolveFrom: { + en: "Shroodle" + }, + + description: { + en: "The color of the poisonous saliva depends on what the Pokémon eats. Grafaiai covers its fingers in its saliva and draws patterns on trees in forests." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Poison Coating" + }, + + effect: { + en: "Once during your turn, you may flip a coin. If heads, your opponent's Active Pokémon is now Poisoned." + } + }], + + attacks: [{ + name: { + en: "Bite" + }, + + damage: 40, + cost: ["Darkness", "Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/052.ts b/data/Pokémon TCG Pocket/Shining Revelry/052.ts new file mode 100644 index 000000000..613a82c10 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/052.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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 itself, but the hammer is often stolen by Pokémon that 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émon TCG Pocket/Shining Revelry/053.ts b/data/Pokémon TCG Pocket/Shining Revelry/053.ts new file mode 100644 index 000000000..79f1b2fc4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/053.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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 Bisharp, gathering metal from them in order to create 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émon TCG Pocket/Shining Revelry/054.ts b/data/Pokémon TCG Pocket/Shining Revelry/054.ts new file mode 100644 index 000000000..a0ec41da6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/054.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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émon TCG Pocket/Shining Revelry/055.ts b/data/Pokémon TCG Pocket/Shining Revelry/055.ts new file mode 100644 index 000000000..06eda177f --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/055.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Varoom" + }, + + illustrator: "Souichirou Gunjima", + rarity: "One Diamond", + category: "Pokemon", + hp: 70, + types: ["Metal"], + + description: { + en: "It is said that this Pokémon was born when an unknown poison Pokémon entered and inspirited an engine left at a scrap-processing factory." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Headbutt" + }, + + damage: 10, + cost: ["Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/056.ts b/data/Pokémon TCG Pocket/Shining Revelry/056.ts new file mode 100644 index 000000000..5f1323434 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/056.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Revavroom" + }, + + illustrator: "Souichirou Gunjima", + rarity: "Two Diamond", + category: "Pokemon", + hp: 110, + types: ["Metal"], + + evolveFrom: { + en: "Varoom" + }, + + description: { + en: "It creates a gas out of poison and minerals from rocks. It then detonates the gas in its cylinders— now numbering eight—to generate energy." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Spinning Drift" + }, + + damage: 70, + cost: ["Metal", "Metal", "Colorless"], + + effect: { + en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from—and effects of—attacks done to this Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/057.ts b/data/Pokémon TCG Pocket/Shining Revelry/057.ts new file mode 100644 index 000000000..29c62367a --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/057.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Gholdengo" + }, + + illustrator: "HYOGONOSUKE", + rarity: "Three Diamond", + category: "Pokemon", + hp: 120, + types: ["Metal"], + + evolveFrom: { + en: "Gimmighoul" + }, + + description: { + en: "Its body seems to be made up of 1,000 coins. This Pokémon gets along well with others and is quick to make friends with anybody." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Scintillating Surfing" + }, + + damage: 50, + cost: ["Metal", "Colorless", "Colorless"], + + effect: { + en: "Flip a coin for each Energy attached to this Pokémon. This attack does 50 damage for each heads." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/058.ts b/data/Pokémon TCG Pocket/Shining Revelry/058.ts new file mode 100644 index 000000000..9a9410886 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/058.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Rattata" + }, + + illustrator: "Eri Yamaki", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + + description: { + en: "Its incisors grow continuously throughout its life. If its incisors get too long, this Pokémon becomes unable to eat, and it starves to death." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Tackle" + }, + + damage: 10, + cost: ["Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/059.ts b/data/Pokémon TCG Pocket/Shining Revelry/059.ts new file mode 100644 index 000000000..aeecc2b4c --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/059.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Raticate" + }, + + illustrator: "Kyoko Umemoto", + rarity: "One Diamond", + category: "Pokemon", + hp: 90, + types: ["Colorless"], + + evolveFrom: { + en: "Rattata" + }, + + description: { + en: "People say that it fled from its enemies by using its small webbed hind feet to swim from island to island in Alola." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Tackle" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/060.ts b/data/Pokémon TCG Pocket/Shining Revelry/060.ts new file mode 100644 index 000000000..4d623a5ba --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/060.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Jigglypuff" + }, + + illustrator: "Kanako Eo", + rarity: "One Diamond", + category: "Pokemon", + hp: 60, + types: ["Colorless"], + + description: { + en: "It hugely inflates its stomach and sings a mysterious melody. If you hear this melody, you'll become sleepy right away." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Rollout" + }, + + 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émon TCG Pocket/Shining Revelry/061.ts b/data/Pokémon TCG Pocket/Shining Revelry/061.ts new file mode 100644 index 000000000..5ba648ef8 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/061.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Wigglytuff" + }, + + illustrator: "miki kudo", + rarity: "Three Diamond", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + + evolveFrom: { + en: "Jigglypuff" + }, + + description: { + en: "It has a very fine fur. Take care not to make it angry, or it may inflate steadily and hit with a body slam." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Comforting Song" + }, + + effect: { + en: "Once during your turn, you may heal 20 damage from your Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Gentle Slap" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/062.ts b/data/Pokémon TCG Pocket/Shining Revelry/062.ts new file mode 100644 index 000000000..b01831799 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/062.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Lickitung" + }, + + illustrator: "Sumiyoshi Kizuki", + rarity: "One Diamond", + category: "Pokemon", + hp: 80, + types: ["Colorless"], + + description: { + en: "If this Pokémon's sticky saliva gets on you and you don't clean it off, an intense itch will set in. The itch won't go away, either." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Rollout" + }, + + 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émon TCG Pocket/Shining Revelry/063.ts b/data/Pokémon TCG Pocket/Shining Revelry/063.ts new file mode 100644 index 000000000..a10cb6456 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/063.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Lickilicky" + }, + + illustrator: "Suwama Chiaki", + rarity: "One Diamond", + category: "Pokemon", + hp: 130, + types: ["Colorless"], + + evolveFrom: { + en: "Lickitung" + }, + + description: { + en: "Lickilicky's strange tongue can stretch to many times the length of its body. No one has figured out how Lickilicky's tongue can stretch so far." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Rollout" + }, + + damage: 70, + cost: ["Colorless", "Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 3 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/064.ts b/data/Pokémon TCG Pocket/Shining Revelry/064.ts new file mode 100644 index 000000000..16025b58a --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/064.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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 more 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émon TCG Pocket/Shining Revelry/065.ts b/data/Pokémon TCG Pocket/Shining Revelry/065.ts new file mode 100644 index 000000000..2b39ec5fc --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/065.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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émon TCG Pocket/Shining Revelry/066.ts b/data/Pokémon TCG Pocket/Shining Revelry/066.ts new file mode 100644 index 000000000..1f61faa1e --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/066.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Buneary" + }, + + illustrator: "Kagemaru Himeno", + rarity: "One Diamond", + category: "Pokemon", + hp: 50, + types: ["Colorless"], + + description: { + en: "If both of Buneary's ears are rolled up, something is wrong with its body or mind. It's a sure sign the Pokémon is in need of care." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Pound" + }, + + 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émon TCG Pocket/Shining Revelry/067.ts b/data/Pokémon TCG Pocket/Shining Revelry/067.ts new file mode 100644 index 000000000..ae539fc36 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/067.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Lopunny" + }, + + illustrator: "Minahamu", + rarity: "One Diamond", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + + evolveFrom: { + en: "Buneary" + }, + + description: { + en: "Lopunny is constantly monitoring its surroundings. If danger approaches, this Pokémon responds with superdestructive kicks." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Hopping Shot" + }, + + 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émon TCG Pocket/Shining Revelry/068.ts b/data/Pokémon TCG Pocket/Shining Revelry/068.ts new file mode 100644 index 000000000..bd03244a0 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/068.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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 ride on its back since ancient times. Depictions of this 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émon TCG Pocket/Shining Revelry/069.ts b/data/Pokémon TCG Pocket/Shining Revelry/069.ts new file mode 100644 index 000000000..158e2992b --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/069.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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émon TCG Pocket/Shining Revelry/070.ts b/data/Pokémon TCG Pocket/Shining Revelry/070.ts new file mode 100644 index 000000000..022c5dc76 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/070.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pokémon Center Lady" + }, + + illustrator: "Susumu Maeya", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Heal 30 damage from 1 of your Pokémon, and it recovers from all Special Conditions." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/071.ts b/data/Pokémon TCG Pocket/Shining Revelry/071.ts new file mode 100644 index 000000000..8b7bdd96c --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/071.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +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émon TCG Pocket/Shining Revelry/072.ts b/data/Pokémon TCG Pocket/Shining Revelry/072.ts new file mode 100644 index 000000000..87a53fac9 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/072.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Team Rocket Grunt" + }, + + illustrator: "kantaro", + rarity: "Two Diamond", + category: "Trainer", + + effect: { + en: "Flip a coin until you get tails. For each heads, discard a random Energy from your opponent's Active Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/073.ts b/data/Pokémon TCG Pocket/Shining Revelry/073.ts new file mode 100644 index 000000000..6b8a866e5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/073.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Meowscarada" + }, + + illustrator: "danciao", + rarity: "One Star", + category: "Pokemon", + hp: 140, + types: ["Grass"], + + evolveFrom: { + en: "Floragato" + }, + + description: { + en: "This Pokémon uses the reflective fur lining its cape to camouflage the stem of its flower, creating 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émon TCG Pocket/Shining Revelry/074.ts b/data/Pokémon TCG Pocket/Shining Revelry/074.ts new file mode 100644 index 000000000..301c09d5b --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/074.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Buizel" + }, + + illustrator: "Shimaris Yukichi", + rarity: "One Star", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + en: "It inflates its flotation sac, keeping its face above water in order to watch for prey movement." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Water Gun" + }, + + damage: 10, + cost: ["Water"] + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/075.ts b/data/Pokémon TCG Pocket/Shining Revelry/075.ts new file mode 100644 index 000000000..af0f1364e --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/075.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Tatsugiri" + }, + + illustrator: "cochi8i", + rarity: "One Star", + category: "Pokemon", + hp: 70, + types: ["Water"], + + description: { + en: "This is a small dragon Pokémon. It lives inside the mouth of Dondozo to protect itself from enemies on the outside." + }, + + stage: "Basic", + + abilities: [{ + type: "Ability", + + name: { + en: "Retreat Directive" + }, + + effect: { + en: "Your Active Dondozo has no Retreat Cost." + } + }], + + attacks: [{ + name: { + en: "Rain Splash" + }, + + 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émon TCG Pocket/Shining Revelry/076.ts b/data/Pokémon TCG Pocket/Shining Revelry/076.ts new file mode 100644 index 000000000..8e0d5c2f5 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/076.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Grafaiai" + }, + + illustrator: "Teeziro", + rarity: "One Star", + category: "Pokemon", + hp: 90, + types: ["Darkness"], + + evolveFrom: { + en: "Shroodle" + }, + + description: { + en: "The color of the poisonous saliva depends on what the Pokémon eats. Grafaiai covers its fingers in its saliva and draws patterns on trees in forests." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Poison Coating" + }, + + effect: { + en: "Once during your turn, you may flip a coin. If heads, your opponent's Active Pokémon is now Poisoned." + } + }], + + attacks: [{ + name: { + en: "Bite" + }, + + damage: 40, + cost: ["Darkness", "Darkness"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/077.ts b/data/Pokémon TCG Pocket/Shining Revelry/077.ts new file mode 100644 index 000000000..f3a6fe778 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/077.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Gholdengo" + }, + + illustrator: "Jerky", + rarity: "One Star", + category: "Pokemon", + hp: 120, + types: ["Metal"], + + evolveFrom: { + en: "Gimmighoul" + }, + + description: { + en: "Its body seems to be made up of 1,000 coins. This Pokémon gets along well with others and is quick to make friends with anybody." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Scintillating Surfing" + }, + + damage: 50, + cost: ["Metal", "Colorless", "Colorless"], + + effect: { + en: "Flip a coin for each Energy attached to this Pokémon. This attack does 50 damage for each heads." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/078.ts b/data/Pokémon TCG Pocket/Shining Revelry/078.ts new file mode 100644 index 000000000..572273a98 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/078.ts @@ -0,0 +1,56 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Wigglytuff" + }, + + illustrator: "5ban Graphics", + rarity: "One Star", + category: "Pokemon", + hp: 100, + types: ["Colorless"], + + evolveFrom: { + en: "Jigglypuff" + }, + + description: { + en: "It has a very fine fur. Take care not to make it angry, or it may inflate steadily and hit with a body slam." + }, + + stage: "Stage1", + + abilities: [{ + type: "Ability", + + name: { + en: "Comforting Song" + }, + + effect: { + en: "Once during your turn, you may heal 20 damage from your Active Pokémon." + } + }], + + attacks: [{ + name: { + en: "Gentle Slap" + }, + + damage: 50, + cost: ["Colorless", "Colorless"] + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/079.ts b/data/Pokémon TCG Pocket/Shining Revelry/079.ts new file mode 100644 index 000000000..99cae9686 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/079.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Beedrill ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Two Star", + 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émon TCG Pocket/Shining Revelry/080.ts b/data/Pokémon TCG Pocket/Shining Revelry/080.ts new file mode 100644 index 000000000..f96fd11c0 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/080.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Charizard ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Two Star", + category: "Pokemon", + hp: 180, + types: ["Fire"], + + evolveFrom: { + en: "Charmeleon" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Stoke" + }, + + cost: ["Fire"], + + effect: { + en: "Take 3 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émon TCG Pocket/Shining Revelry/081.ts b/data/Pokémon TCG Pocket/Shining Revelry/081.ts new file mode 100644 index 000000000..d24923584 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/081.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Wugtrio ex" + }, + + illustrator: "PLANETA Tsuji", + rarity: "Two Star", + 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émon TCG Pocket/Shining Revelry/082.ts b/data/Pokémon TCG Pocket/Shining Revelry/082.ts new file mode 100644 index 000000000..d07c3436c --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/082.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Two Star", + 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émon TCG Pocket/Shining Revelry/083.ts b/data/Pokémon TCG Pocket/Shining Revelry/083.ts new file mode 100644 index 000000000..17a00eba4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/083.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Giratina ex" + }, + + illustrator: "PLANETA Yamashita", + rarity: "Two Star", + 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 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émon TCG Pocket/Shining Revelry/084.ts b/data/Pokémon TCG Pocket/Shining Revelry/084.ts new file mode 100644 index 000000000..23bd75cd6 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/084.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Lucario ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Two Star", + category: "Pokemon", + hp: 150, + types: ["Fighting"], + + evolveFrom: { + en: "Riolu" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Aura Sphere" + }, + + damage: 100, + cost: ["Fighting", "Fighting", "Fighting"], + + effect: { + en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2 +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/085.ts b/data/Pokémon TCG Pocket/Shining Revelry/085.ts new file mode 100644 index 000000000..36462cede --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/085.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Paldean Clodsire ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Two Star", + 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émon TCG Pocket/Shining Revelry/086.ts b/data/Pokémon TCG Pocket/Shining Revelry/086.ts new file mode 100644 index 000000000..a4671bc0d --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/086.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Tinkaton ex" + }, + + illustrator: "PLANETA Igarashi", + rarity: "Two Star", + 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émon TCG Pocket/Shining Revelry/087.ts b/data/Pokémon TCG Pocket/Shining Revelry/087.ts new file mode 100644 index 000000000..83cd03b0a --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/087.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Bibarel ex" + }, + + illustrator: "PLANETA CG Works", + rarity: "Two Star", + 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émon TCG Pocket/Shining Revelry/088.ts b/data/Pokémon TCG Pocket/Shining Revelry/088.ts new file mode 100644 index 000000000..4931664d1 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/088.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Iono" + }, + + illustrator: "saino misaki", + rarity: "Two Star", + 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émon TCG Pocket/Shining Revelry/089.ts b/data/Pokémon TCG Pocket/Shining Revelry/089.ts new file mode 100644 index 000000000..9bacae14b --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/089.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pokémon Center Lady" + }, + + illustrator: "Susumu Maeya", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "Heal 30 damage from 1 of your Pokémon, and it recovers from all Special Conditions." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/090.ts b/data/Pokémon TCG Pocket/Shining Revelry/090.ts new file mode 100644 index 000000000..527d7ac4a --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/090.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Red" + }, + + illustrator: "Teeziro", + rarity: "Two Star", + 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émon TCG Pocket/Shining Revelry/091.ts b/data/Pokémon TCG Pocket/Shining Revelry/091.ts new file mode 100644 index 000000000..af9a6d150 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/091.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Team Rocket Grunt" + }, + + illustrator: "kantaro", + rarity: "Two Star", + category: "Trainer", + + effect: { + en: "Flip a coin until you get tails. For each heads, discard a random Energy from your opponent's Active Pokémon." + }, + + trainerType: "Supporter" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/092.ts b/data/Pokémon TCG Pocket/Shining Revelry/092.ts new file mode 100644 index 000000000..d2acfdcbf --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/092.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pikachu ex" + }, + + illustrator: "You Iribi", + rarity: "Two Star", + 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émon TCG Pocket/Shining Revelry/093.ts b/data/Pokémon TCG Pocket/Shining Revelry/093.ts new file mode 100644 index 000000000..6893de16b --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/093.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Paldean Clodsire ex" + }, + + illustrator: "REND", + rarity: "Two Star", + 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émon TCG Pocket/Shining Revelry/094.ts b/data/Pokémon TCG Pocket/Shining Revelry/094.ts new file mode 100644 index 000000000..494149b87 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/094.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Tinkaton ex" + }, + + illustrator: "kurumitsu", + rarity: "Two Star", + 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émon TCG Pocket/Shining Revelry/095.ts b/data/Pokémon TCG Pocket/Shining Revelry/095.ts new file mode 100644 index 000000000..33c8af74d --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/095.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Bibarel ex" + }, + + illustrator: "USGMEN", + rarity: "Two Star", + 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émon TCG Pocket/Shining Revelry/096.ts b/data/Pokémon TCG Pocket/Shining Revelry/096.ts new file mode 100644 index 000000000..1f9d82367 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/096.ts @@ -0,0 +1,52 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Giratina ex" + }, + + illustrator: "Shinji Kanda", + rarity: "Three Star", + 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 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émon TCG Pocket/Shining Revelry/097.ts b/data/Pokémon TCG Pocket/Shining Revelry/097.ts new file mode 100644 index 000000000..82950d1b0 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/097.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Weedle" + }, + + illustrator: "Sanosuke Sakuma", + category: "Pokemon", + hp: 50, + types: ["Grass"], + + description: { + en: "Often found in forests and grasslands. It has a sharp, toxic barb of around two inches on 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, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/098.ts b/data/Pokémon TCG Pocket/Shining Revelry/098.ts new file mode 100644 index 000000000..d5558403b --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/098.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Kakuna" + }, + + illustrator: "Sanosuke Sakuma", + category: "Pokemon", + hp: 80, + types: ["Grass"], + + evolveFrom: { + en: "Weedle" + }, + + description: { + en: "Almost incapable of moving, this Pokémon can only harden its shell to protect itself when it is in 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, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/099.ts b/data/Pokémon TCG Pocket/Shining Revelry/099.ts new file mode 100644 index 000000000..ad40c7efd --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/099.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Charmander" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 60, + types: ["Fire"], + + description: { + en: "It has a preference for hot things. When it rains, steam is said to spout from the tip of its tail." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Combustion" + }, + + damage: 20, + cost: ["Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 1, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/100.ts b/data/Pokémon TCG Pocket/Shining Revelry/100.ts new file mode 100644 index 000000000..1f53dd540 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/100.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Charmeleon" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 90, + types: ["Fire"], + + evolveFrom: { + en: "Charmander" + }, + + description: { + en: "It has a barbaric nature. In battle, it whips its fiery tail around and slashes away with sharp claws." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Combustion" + }, + + damage: 40, + cost: ["Fire", "Fire"] + }], + + weaknesses: [{ + type: "Water", + value: "+20" + }], + + retreat: 2, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/101.ts b/data/Pokémon TCG Pocket/Shining Revelry/101.ts new file mode 100644 index 000000000..5be19cfca --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/101.ts @@ -0,0 +1,43 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Wiglett" + }, + + illustrator: "Souichirou Gunjima", + category: "Pokemon", + hp: 60, + types: ["Water"], + + description: { + en: "This Pokémon can pick up the scent of a Veluza just over 65 feet away and will hide itself in the 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, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/102.ts b/data/Pokémon TCG Pocket/Shining Revelry/102.ts new file mode 100644 index 000000000..04285c20e --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/102.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Dondozo" + }, + + illustrator: "GOSSAN", + category: "Pokemon", + hp: 120, + types: ["Water"], + + description: { + en: "This Pokémon is a glutton, but it's bad at getting food. It teams up with a Tatsugiri to catch prey." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Ocean Cyclone" + }, + + damage: 80, + cost: ["Water", "Water", "Colorless", "Colorless"], + + effect: { + en: "This attack also does 10 damage to each of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Lightning", + value: "+20" + }], + + retreat: 3, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/103.ts b/data/Pokémon TCG Pocket/Shining Revelry/103.ts new file mode 100644 index 000000000..48b10540c --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/103.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Pachirisu" + }, + + illustrator: "Tomowaka", + category: "Pokemon", + hp: 70, + types: ["Lightning"], + + description: { + en: "It's one of the kinds of Pokémon with electric cheek pouches. It shoots charges from its tail." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Plasma" + }, + + damage: 10, + cost: ["Lightning"], + + effect: { + en: "Take a Energy from your Energy Zone and attach it to 1 of your Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Fighting", + value: "+20" + }], + + retreat: 1, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/104.ts b/data/Pokémon TCG Pocket/Shining Revelry/104.ts new file mode 100644 index 000000000..22f51a458 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/104.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Riolu" + }, + + illustrator: "GOSSAN", + category: "Pokemon", + hp: 70, + types: ["Fighting"], + + description: { + en: "They communicate with one another using their auras. 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, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/105.ts b/data/Pokémon TCG Pocket/Shining Revelry/105.ts new file mode 100644 index 000000000..f3afe207b --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/105.ts @@ -0,0 +1,40 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Varoom" + }, + + illustrator: "nagimiso", + category: "Pokemon", + hp: 70, + types: ["Metal"], + + description: { + en: "It is said that this Pokémon was born when an unknown poison Pokémon entered and inspirited an engine left at a scrap-processing factory." + }, + + stage: "Basic", + + attacks: [{ + name: { + en: "Headbutt" + }, + + damage: 10, + cost: ["Metal"] + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 1, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/106.ts b/data/Pokémon TCG Pocket/Shining Revelry/106.ts new file mode 100644 index 000000000..111e02a92 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/106.ts @@ -0,0 +1,48 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Revavroom" + }, + + illustrator: "nagimiso", + category: "Pokemon", + hp: 110, + types: ["Metal"], + + evolveFrom: { + en: "Varoom" + }, + + description: { + en: "It creates a gas out of poison and minerals from rocks. It then detonates the gas in its cylinders— now numbering eight—to generate energy." + }, + + stage: "Stage1", + + attacks: [{ + name: { + en: "Spinning Drift" + }, + + damage: 70, + cost: ["Metal", "Metal", "Colorless"], + + effect: { + en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from—and effects of—attacks done to this Pokémon." + } + }], + + weaknesses: [{ + type: "Fire", + value: "+20" + }], + + retreat: 2, + rarity: "One Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/107.ts b/data/Pokémon TCG Pocket/Shining Revelry/107.ts new file mode 100644 index 000000000..a3b018d0e --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/107.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Beedrill ex" + }, + + illustrator: "PLANETA Igarashi", + 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, + rarity: "Two Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/108.ts b/data/Pokémon TCG Pocket/Shining Revelry/108.ts new file mode 100644 index 000000000..1bb499608 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/108.ts @@ -0,0 +1,51 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Charizard ex" + }, + + illustrator: "PLANETA Igarashi", + category: "Pokemon", + hp: 180, + types: ["Fire"], + + evolveFrom: { + en: "Charmeleon" + }, + + stage: "Stage2", + suffix: "EX", + + attacks: [{ + name: { + en: "Stoke" + }, + + cost: ["Fire"], + + effect: { + en: "Take 3 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, + rarity: "Two Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/109.ts b/data/Pokémon TCG Pocket/Shining Revelry/109.ts new file mode 100644 index 000000000..11812ba74 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/109.ts @@ -0,0 +1,44 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Wugtrio ex" + }, + + illustrator: "PLANETA Tsuji", + 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, + rarity: "Two Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/110.ts b/data/Pokémon TCG Pocket/Shining Revelry/110.ts new file mode 100644 index 000000000..731de3e64 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/110.ts @@ -0,0 +1,45 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Lucario ex" + }, + + illustrator: "PLANETA CG Works", + category: "Pokemon", + hp: 150, + types: ["Fighting"], + + evolveFrom: { + en: "Riolu" + }, + + stage: "Stage1", + suffix: "EX", + + attacks: [{ + name: { + en: "Aura Sphere" + }, + + damage: 100, + cost: ["Fighting", "Fighting", "Fighting"], + + effect: { + en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon." + } + }], + + weaknesses: [{ + type: "Psychic", + value: "+20" + }], + + retreat: 2, + rarity: "Two Shiny" +} + +export default card \ No newline at end of file diff --git a/data/Pokémon TCG Pocket/Shining Revelry/111.ts b/data/Pokémon TCG Pocket/Shining Revelry/111.ts new file mode 100644 index 000000000..aae9ae3e4 --- /dev/null +++ b/data/Pokémon TCG Pocket/Shining Revelry/111.ts @@ -0,0 +1,22 @@ +import { Card } from "../../../interfaces" +import Set from "../Shining Revelry" + +const card: Card = { + set: Set, + + name: { + en: "Poké Ball" + }, + + illustrator: "Toyste Beach", + rarity: "Crown", + category: "Trainer", + + effect: { + en: "Put a random Basic Pokémon from your deck into your hand." + }, + + trainerType: "Item" +} + +export default card \ No newline at end of file diff --git a/interfaces.d.ts b/interfaces.d.ts index 7a5f8c8be..ec97b5bd8 100644 --- a/interfaces.d.ts +++ b/interfaces.d.ts @@ -132,7 +132,7 @@ export interface Card { 'Rare PRIME' | 'Secret Rare' | 'Shiny Ultra Rare' | 'Shiny rare' | 'Shiny rare V' | 'Shiny rare VMAX' | 'Special illustration rare' | 'Ultra Rare' | 'Uncommon' | // Pokémon TCG Pocket Rarities - 'One Diamond' | 'Two Diamond' | 'Three Diamond' | 'Four Diamond' | 'One Star' | 'Two Star' | 'Three Star' | 'Crown' + 'One Diamond' | 'Two Diamond' | 'Three Diamond' | 'Four Diamond' | 'One Star' | 'Two Star' | 'Three Star' | 'Crown' | 'One Shiny' | 'Two Shiny' /** * Card Category