mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
@ -5,36 +5,43 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Garchomp",
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
445,
|
||||
],
|
||||
|
||||
hp: 130,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Gabite",
|
||||
},
|
||||
stage: "Basic",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Dragon Rage",
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip 2 coins. If either of them is tails, this attack does nothing.",
|
||||
},
|
||||
|
||||
damage: 80
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
@ -46,23 +53,32 @@ const card: Card = {
|
||||
en: "Jet Sword",
|
||||
},
|
||||
effect: {
|
||||
en: "Discard 2 Energy attached to Garchomp and this attack does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
en: "Discard 2 Energy attached to Garchomp and this attack does 10 damage to each of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
damage: 100,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Colorless",
|
||||
value: "×2"
|
||||
value: "+30"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 0,
|
||||
|
||||
description: {
|
||||
en: "It flies at speeds equal to a jet fighter plane. It never allows its prey to escape."
|
||||
},
|
||||
|
||||
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,22 +5,24 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Pachirisu",
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
417,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -41,21 +43,23 @@ const card: Card = {
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Poison Gulp",
|
||||
en: "Poison Berry",
|
||||
},
|
||||
effect: {
|
||||
en: "If you have Croagunk in play, this attack does 20 damage plus 20 more damage and the Defending Pokémon is now Poisoned.",
|
||||
},
|
||||
damage: 20,
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Metal",
|
||||
@ -63,9 +67,18 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
description: {
|
||||
en: "It makes electricity with pouches in its cheeks and shoots charges from its tail. It live atop trees."
|
||||
},
|
||||
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,15 +5,18 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Pichu",
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
172,
|
||||
],
|
||||
|
||||
hp: 40,
|
||||
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
@ -31,6 +34,7 @@ const card: Card = {
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
|
||||
@ -43,12 +47,14 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Metal",
|
||||
@ -56,9 +62,18 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
description: {
|
||||
en: "It plays with others by touching tails and setting off sparks. This appears to be a test of courage."
|
||||
},
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,22 +5,24 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Buneary",
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
427,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -32,7 +34,7 @@ const card: Card = {
|
||||
effect: {
|
||||
en: "Flip 2 coins. This attack does 10 damage times the number of heads.",
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10×",
|
||||
|
||||
},
|
||||
{
|
||||
@ -44,22 +46,31 @@ const card: Card = {
|
||||
en: "Defense Curl",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, prevent all damage done to Buneary by attacks during your opponent's next turn.",
|
||||
en: "Flip a coin. If heads, prevent all damage done to Buneary by attacks during your opponent’s next turn.",
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
description: {
|
||||
en: "When it senses danger, it perks up its ears. On cold nights, it sleeps with its head tucked into its fur."
|
||||
},
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,22 +5,24 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Chimchar",
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
390,
|
||||
],
|
||||
|
||||
hp: 40,
|
||||
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -32,7 +34,7 @@ const card: Card = {
|
||||
effect: {
|
||||
en: "Flip 4 coins. This attack does 10 damage times the number of heads.",
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10×",
|
||||
|
||||
},
|
||||
{
|
||||
@ -47,21 +49,30 @@ const card: Card = {
|
||||
effect: {
|
||||
en: "If you have Piplup in play, this attack does 40 damage plus 20 more damage and the Defending Pokémon is now Asleep.",
|
||||
},
|
||||
damage: 40,
|
||||
damage: "40+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
description: {
|
||||
en: "Its fiery rear end is fueld by gas made in its belly. Even rain can’t extinguish the fire."
|
||||
},
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,22 +5,24 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Gible",
|
||||
},
|
||||
|
||||
illustrator: "Hiroki Fuchino",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
443,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -36,6 +38,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Colorless",
|
||||
@ -43,10 +46,18 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
description: {
|
||||
en: "Its nests is small, horizontal holes in cave walls. It pounces to catch prey that stray too close."
|
||||
},
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,22 +5,24 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Pikachu",
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
25,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -30,7 +32,7 @@ const card: Card = {
|
||||
en: "Growl",
|
||||
},
|
||||
effect: {
|
||||
en: "During your opponent's next turn, any damage done by attacks from the Defending Pokémon is reduced by 20 (before applying Weakness and Resistance).",
|
||||
en: "During your opponent’s next turn, any damage done by attacks from the Defending Pokémon is reduced by 20 (before applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
},
|
||||
@ -50,12 +52,14 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Metal",
|
||||
@ -63,9 +67,18 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
description: {
|
||||
en: "If it looses crackling power from the electric pouches on its cheeks, it is being wary."
|
||||
},
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,22 +5,24 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Piplup",
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
393,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -32,7 +34,7 @@ const card: Card = {
|
||||
effect: {
|
||||
en: "If Piplup has less Energy attached to it than the Defending Pokémon, this attack does 10 damage plus 10 more damage.",
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
{
|
||||
@ -45,23 +47,32 @@ const card: Card = {
|
||||
en: "Wavelet",
|
||||
},
|
||||
effect: {
|
||||
en: "If you have Buizel in play, this attack does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
en: "If you have Buizel in play, this attack does 10 damage to each of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
description: {
|
||||
en: "It lives along shores in northern countries. A skilled swimmer, it dives for over 10 minutes to hunt."
|
||||
},
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,22 +5,24 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Turtwig",
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
387,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -47,16 +49,18 @@ const card: Card = {
|
||||
effect: {
|
||||
en: "If you have Chimchar in play, this attack does 40 damage plus 20 more damage and the Defending Pokémon is now Burned.",
|
||||
},
|
||||
damage: 40,
|
||||
damage: "40+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Water",
|
||||
@ -64,9 +68,18 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
description: {
|
||||
en: "It undertakes photosynthesis with its body, making oxygen. The leaf on its head wilts if it is thirsty."
|
||||
},
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,22 +5,24 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Manaphy",
|
||||
},
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
490,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -42,23 +44,31 @@ const card: Card = {
|
||||
en: "Water Glow",
|
||||
},
|
||||
effect: {
|
||||
en: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) Then, remove from Manaphy the number of damage counters equal to the damage you did to that Pokémon.",
|
||||
},
|
||||
damage: 20,
|
||||
en: "Choose 1 of your opponent’s Pokémon. This attack does 20 damage to that Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.) Remove from Manaphy the number of damage counters equal to the damage you did to that Pokémon.",
|
||||
}
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
description: {
|
||||
en: "It is born with a wondrous power that lets it bond with any kind of Pokémon."
|
||||
},
|
||||
|
||||
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,23 +5,27 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Raichu",
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
26,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pikachu",
|
||||
},
|
||||
stage: "Basic",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -35,7 +39,7 @@ const card: Card = {
|
||||
effect: {
|
||||
en: "Flip 2 coins. This attack does 30 damage times the number of heads.",
|
||||
},
|
||||
damage: 30,
|
||||
damage: "30×",
|
||||
|
||||
},
|
||||
{
|
||||
@ -44,21 +48,26 @@ const card: Card = {
|
||||
"Lightning",
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "High Volt",
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If Raichu evolved from Pikachu during this turn, this attack's base damage is 100 instead of 60.",
|
||||
en: "If Raichu evolved from Pikachu during this turn, this attack’s base damage is 100 instead of 60.",
|
||||
},
|
||||
|
||||
damage: 60
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Metal",
|
||||
@ -66,9 +75,18 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
description: {
|
||||
en: "It can loose 100,000-volt bursts of electricity, instantly downing foes several times its size."
|
||||
},
|
||||
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,22 +5,24 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Regigigas",
|
||||
},
|
||||
|
||||
illustrator: "Kent Kanetsuna",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
486,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -50,10 +52,11 @@ const card: Card = {
|
||||
effect: {
|
||||
en: "Flip 2 coins. This attack does 50 damage plus 20 more damage for each heads.",
|
||||
},
|
||||
damage: 50,
|
||||
damage: "50+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -61,10 +64,18 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 4,
|
||||
|
||||
description: {
|
||||
en: "There is an enduring legend that states this Pokémon towed continents with ropes."
|
||||
},
|
||||
|
||||
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,15 +5,18 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Rotom",
|
||||
},
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
479,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
@ -27,10 +30,11 @@ const card: Card = {
|
||||
en: "Type Shift",
|
||||
},
|
||||
effect: {
|
||||
en: "Once during your turn (before your attack), you may use this power. Rotom's type is Psychic until the end of your turn",
|
||||
en: "Once during your turn (before your attack), you may use this power. Rotom’s type is Psychic until the end of your turn.",
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -41,18 +45,20 @@ const card: Card = {
|
||||
en: "Poltergeist",
|
||||
},
|
||||
effect: {
|
||||
en: "Look at your opponent's hand. This attack does 30 damage plus 10 more damage for each Trainer, Supporter, and Stadium card in your opponent's hand.",
|
||||
en: "Look at your opponent’s hand. This attack does 30 damage plus 10 more damage for each Trainer, Supporter, and Stadium card in your opponent’s hand.",
|
||||
},
|
||||
damage: 30,
|
||||
damage: "30+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Colorless",
|
||||
@ -60,9 +66,18 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
description: {
|
||||
en: "Its electric-like body can enter some kinds of machines and take control in order to make mischief."
|
||||
},
|
||||
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,22 +5,24 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Buizel",
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
418,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -43,23 +45,32 @@ const card: Card = {
|
||||
en: "Super Fast",
|
||||
},
|
||||
effect: {
|
||||
en: "If you have Pachirisu in play, flip a coin. If heads, prevent all effects of an attack, including damage, done to Buizel during your opponent's next turn.",
|
||||
en: "If you have Pachirisu in play, flip a coin. If heads, prevent all effects of an attack, including damage, done to Buizel during your opponent’s next turn.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
description: {
|
||||
en: "It swims by rotating its two tails like a screw. When it dives, its flotation sac collapses."
|
||||
},
|
||||
|
||||
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,22 +5,24 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Croagunk",
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
453,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -30,7 +32,7 @@ const card: Card = {
|
||||
en: "Knock Off",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, choose 1 card from your opponent's hand without looking and discard it.",
|
||||
en: "Flip a coin. If heads, choose 1 card from your opponent’s hand without looking and discard it.",
|
||||
},
|
||||
|
||||
},
|
||||
@ -49,17 +51,26 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
description: {
|
||||
en: "Inflating its poison sacs, it makes an eerie blubbering sound for intimidation."
|
||||
},
|
||||
|
||||
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,23 +5,27 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Gabite",
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
444,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Gible",
|
||||
},
|
||||
stage: "Basic",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -32,7 +36,7 @@ const card: Card = {
|
||||
en: "Burrow",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, prevent all damage done to Gabite by attacks during your opponent's next turn.",
|
||||
en: "Flip a coin. If heads, prevent all damage done to Gabite by attacks during your opponent’s next turn.",
|
||||
},
|
||||
|
||||
},
|
||||
@ -52,17 +56,26 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Colorless",
|
||||
value: "×2"
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
description: {
|
||||
en: "It habitually digs up and hoards gems in its nest. Its loot is constantly targeted by thieves."
|
||||
},
|
||||
|
||||
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,23 +5,27 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Lopunny",
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
428,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Bastiodon",
|
||||
},
|
||||
stage: "Basic",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -33,7 +37,7 @@ const card: Card = {
|
||||
en: "Jump Kick",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
en: "Does 20 damage to 1 of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
@ -54,17 +58,26 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
description: {
|
||||
en: "It is very conscious of its looks and never fails to groom its ears. It runs with sprightly jumps."
|
||||
},
|
||||
|
||||
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user