mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
77 lines
1.6 KiB
TypeScript
77 lines
1.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Gyarados V",
|
||
fr: "Léviator V",
|
||
es: "Gyarados V",
|
||
it: "Gyarados V",
|
||
pt: "Gyarados V",
|
||
de: "Garados V"
|
||
},
|
||
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
hp: 220,
|
||
types: ["Water"],
|
||
stage: "Basic",
|
||
illustrator: "PLANETA Tsuji",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Get Angry",
|
||
fr: "Coléreux",
|
||
es: "Enfadarse",
|
||
it: "Tutte le Furie",
|
||
pt: "Get Angry",
|
||
de: "Rotsehen"
|
||
},
|
||
|
||
effect: {
|
||
en: "This attack does 20 damage for each damage counter on this Pokémon.",
|
||
fr: "Cette attaque inflige 20 dégâts pour chaque marqueur de dégâts sur ce Pokémon.",
|
||
es: "Este ataque hace 20 puntos de daño por cada contador de daño en este Pokémon.",
|
||
it: "Questo attacco infligge 20 danni per ogni segnalino danno presente su questo Pokémon.",
|
||
pt: "This attack does 20 damage for each damage counter on this Pokémon.",
|
||
de: "Diese Attacke fügt für jede Schadensmarke auf diesem Pokémon 20 Schadenspunkte zu."
|
||
},
|
||
|
||
damage: "20×",
|
||
cost: ["Water", "Water", "Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Heavy Storm",
|
||
fr: "Grosse Tempête",
|
||
es: "Fuerte Tormenta",
|
||
it: "Grantempesta",
|
||
pt: "Heavy Storm",
|
||
de: "Schwerer Sturm"
|
||
},
|
||
|
||
damage: 180,
|
||
cost: ["Water", "Water", "Water", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3,
|
||
dexId: [130],
|
||
regulationMark: "E",
|
||
suffix: "V"
|
||
}
|
||
|
||
export default card
|