1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

Fixed most POP sets (#99)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-10-26 17:23:45 +02:00
committed by GitHub
parent 829d78fa6f
commit afd3a664ae
153 changed files with 2328 additions and 1124 deletions

View File

@ -5,21 +5,26 @@ const card: Card = {
name: {
en: "Flygon",
},
illustrator: "Hisao Nakamura",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
330,
],
hp: 120,
types: [
"Fighting",
],
evolveFrom: {
en: "Vibrava",
},
stage: "Stage2",
abilities: [
@ -33,6 +38,7 @@ const card: Card = {
},
},
],
attacks: [
{
cost: [
@ -57,23 +63,27 @@ const card: Card = {
en: "Sand Pit",
},
effect: {
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
en: "The Defending Pokémon cant retreat during your opponents next turn.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
type: "Water"
},
],
retreat: 2,
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card