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
72 lines
1.0 KiB
TypeScript
72 lines
1.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Gyarados VMAX",
|
||
fr: "Léviator VMAX",
|
||
es: "Gyarados VMAX",
|
||
it: "Gyarados VMAX",
|
||
pt: "Gyarados VMAX",
|
||
de: "Garados VMAX"
|
||
},
|
||
|
||
rarity: "Secret Rare",
|
||
category: "Pokemon",
|
||
hp: 330,
|
||
types: ["Water"],
|
||
stage: "VMAX",
|
||
illustrator: "Shin Nagasawa",
|
||
dexId: [130],
|
||
|
||
evolveFrom: {
|
||
en: "Gyarados V",
|
||
fr: "Léviator-V",
|
||
es: "Gyarados V",
|
||
it: "Gyarados-V",
|
||
pt: "Gyarados V",
|
||
de: "Garados-V"
|
||
},
|
||
|
||
attacks: [{
|
||
cost: ["Water", "Water", "Colorless"],
|
||
|
||
name: {
|
||
en: "Hyper Beam"
|
||
},
|
||
|
||
effect: {
|
||
en: "Discard an Energy from your opponent's Active Pokémon."
|
||
},
|
||
|
||
damage: 120
|
||
}, {
|
||
cost: ["Water", "Water", "Water", "Colorless"],
|
||
|
||
name: {
|
||
en: "Max Tyrant"
|
||
},
|
||
|
||
damage: 240
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 4,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card
|