mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
@ -5,23 +5,27 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Blaziken",
|
||||
},
|
||||
|
||||
illustrator: "Katsura Tabata",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
257,
|
||||
],
|
||||
|
||||
hp: 110,
|
||||
|
||||
types: [
|
||||
"Fire",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Combusken",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -48,21 +52,18 @@ const card: Card = {
|
||||
effect: {
|
||||
en: "Flip 2 coins. This attack does 50 damage times the number of heads.",
|
||||
},
|
||||
damage: 50,
|
||||
damage: "50×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
type: "Water"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,32 +5,34 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Torkoal",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
324,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fighting",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Amnesia",
|
||||
},
|
||||
effect: {
|
||||
en: "Choose 1 of the Defending Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.",
|
||||
en: "Choose 1 of the Defending Pokémon’s attacks. That Pokémon can’t use that attack during your opponent’s next turn.",
|
||||
},
|
||||
|
||||
},
|
||||
@ -49,17 +51,14 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
type: "Water"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,22 +5,24 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Larvitar",
|
||||
},
|
||||
|
||||
illustrator: "Hisao Nakamura",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
246,
|
||||
],
|
||||
|
||||
hp: 40,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -30,23 +32,20 @@ const card: Card = {
|
||||
en: "Sand Attack",
|
||||
},
|
||||
effect: {
|
||||
en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.",
|
||||
en: "If the Defending Pokémon tries to attack during your opponent’s next turn, your opponent flips a coin. If tails, that attack does nothing.",
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
type: "Water"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,22 +5,24 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Minun",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
312,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -44,18 +46,19 @@ const card: Card = {
|
||||
en: "Spark",
|
||||
},
|
||||
effect: {
|
||||
en: "Choose 2 of your opponent's Benched Pokémon. This attack does 10 damage to each of those Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.",
|
||||
en: "Choose 2 of your opponent’s Benched Pokémon. This attack does 10 damage to each of those Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
type: "Fighting"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Metal",
|
||||
@ -63,9 +66,7 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,22 +5,24 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Plusle",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
311,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -32,7 +34,7 @@ const card: Card = {
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage.",
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
{
|
||||
@ -44,18 +46,19 @@ const card: Card = {
|
||||
en: "Agility",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, prevent all effects of an attack, including damage, done to Plusle during your opponent's next turn.",
|
||||
en: "Flip a coin. If heads, prevent all effects of an attack, including damage, done to Plusle during your opponent’s next turn.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
type: "Fighting"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Metal",
|
||||
@ -63,9 +66,7 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,22 +5,24 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Surskit",
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
283,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -36,17 +38,14 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
type: "Lightning"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,23 +5,27 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Swellow",
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
277,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Tailow",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -32,7 +36,7 @@ const card: Card = {
|
||||
en: "Focus Energy",
|
||||
},
|
||||
effect: {
|
||||
en: "During your next turn, base damage of Swellow's Agility is 70 instead of 30.",
|
||||
en: "During your next turn, base damage of Swellow’s Agility is 70 instead of 30.",
|
||||
},
|
||||
|
||||
},
|
||||
@ -45,18 +49,19 @@ const card: Card = {
|
||||
en: "Agility",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, prevent all effects of an attack, including damage, done to Swellow during your opponent's next turn.",
|
||||
en: "Flip a coin. If heads, prevent all effects of an attack, including damage, done to Swellow during your opponent’s next turn.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
type: "Lightning"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -64,9 +69,7 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,23 +5,27 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Armaldo ex",
|
||||
},
|
||||
|
||||
illustrator: "Hikaru Koike",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
348,
|
||||
],
|
||||
|
||||
hp: 160,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Anorith",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -30,7 +34,7 @@ const card: Card = {
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Twin Blade",
|
||||
en: "Twin-blade",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 30 damage to each Defending Pokémon.",
|
||||
@ -41,7 +45,7 @@ const card: Card = {
|
||||
cost: [
|
||||
"Fighting",
|
||||
"Fighting",
|
||||
"Fighting",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
@ -49,27 +53,24 @@ const card: Card = {
|
||||
en: "Supersonic Claws",
|
||||
},
|
||||
effect: {
|
||||
en: "This attack's damage is not affected by Resistance.",
|
||||
en: "This attack’s damage is not affected by Resistance.",
|
||||
},
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
type: "Grass"
|
||||
},
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
type: "Water"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
suffix: "EX",
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,23 +5,27 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Tyranitar ex",
|
||||
},
|
||||
illustrator: "Hikaru Koike",
|
||||
|
||||
illustrator: "Hisao Nakamura",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
248,
|
||||
],
|
||||
|
||||
hp: 150,
|
||||
|
||||
types: [
|
||||
"Darkness",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pupitar",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -46,22 +50,22 @@ const card: Card = {
|
||||
en: "Critical Crush",
|
||||
},
|
||||
effect: {
|
||||
en: "Discard 2 Basic Energy cards attached to Tyranitar ex or this attack does nothing.",
|
||||
en: "Discard 2 basic Energy cards attached to Tyranitar ex or this attack does nothing.",
|
||||
},
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
type: "Grass"
|
||||
},
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
type: "Fighting"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -69,9 +73,8 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
suffix: "EX",
|
||||
retreat: 4
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,23 +5,27 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Metagross",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
376,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Metal",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Metang",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -53,12 +57,13 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
type: "Fire"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Grass",
|
||||
@ -66,9 +71,7 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,22 +5,24 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Rayquaza",
|
||||
},
|
||||
|
||||
illustrator: "Katsura Tabata",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
384,
|
||||
],
|
||||
|
||||
hp: 80,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -30,7 +32,7 @@ const card: Card = {
|
||||
en: "Fly",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, this attack does nothing. If heads, prevent all effects of an attack, including damage, done to Rayquaza during your opponent's next turn.",
|
||||
en: "Flip a coin. If tails, this attack does nothing. If heads, prevent all effects of an attack, including damage, done to Rayquaza during your opponent’s next turn.",
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
@ -48,17 +50,14 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Colorless",
|
||||
value: "×2"
|
||||
type: "Colorless"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,23 +5,27 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Sceptile",
|
||||
},
|
||||
|
||||
illustrator: "Hiromichi Sugiyama",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
254,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Grovyle",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -49,16 +53,17 @@ const card: Card = {
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 40 damage plus 30 more damage.",
|
||||
},
|
||||
damage: 40,
|
||||
damage: "40+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
type: "Fire"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Water",
|
||||
@ -66,9 +71,7 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,23 +5,27 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Swampert",
|
||||
},
|
||||
|
||||
illustrator: "Hiromichi Sugiyama",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
260,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Marshtomp",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -47,23 +51,20 @@ const card: Card = {
|
||||
en: "Mud Splash",
|
||||
},
|
||||
effect: {
|
||||
en: "If your opponent has any Benched Pokémon, choose 1 of them and flip a coin. If heads, this attack does 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
en: "If your opponent has any Benched Pokémon, choose 1 of them and flip a coin. If heads, this attack does 20 damage to that Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
type: "Lightning"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,23 +5,27 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Beautifly",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
267,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Silcoon",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -54,17 +58,14 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
type: "Fire"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
retreat: 0
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,23 +5,27 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Masquerain",
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
284,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Surskit",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -34,7 +38,7 @@ const card: Card = {
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage.",
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
{
|
||||
@ -51,12 +55,13 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
type: "Lightning"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -64,9 +69,7 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
retreat: 0
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,15 +5,18 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Murkrow",
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
198,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Darkness",
|
||||
],
|
||||
@ -27,10 +30,11 @@ const card: Card = {
|
||||
en: "Insomnia",
|
||||
},
|
||||
effect: {
|
||||
en: "Murkrow can't be Asleep.",
|
||||
en: "Murkrow can’t be Asleep.",
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -41,17 +45,18 @@ const card: Card = {
|
||||
en: "Feint Attack",
|
||||
},
|
||||
effect: {
|
||||
en: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on that Pokémon.",
|
||||
en: "Choose 1 of your opponent’s Pokémon. This attack does 20 damage to that Pokémon. This attack’s damage isn’t affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on that Pokémon.",
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
type: "Fighting"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -59,9 +64,7 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
||||
|
@ -5,23 +5,27 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Pupitar",
|
||||
},
|
||||
|
||||
illustrator: "Hisao Nakamura",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
247,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Larvitar",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -35,21 +39,18 @@ const card: Card = {
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.",
|
||||
},
|
||||
damage: 20,
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
type: "Water"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user