1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

71 lines
1.2 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [888],
set: Set,
name: {
en: "Inteleon VMAX",
fr: "Lézargus VMAX",
es: "Inteleon VMAX",
it: "Inteleon VMAX",
pt: "Inteleon VMAX",
de: "Intelleon VMAX"
},
rarity: "Holo Rare VMAX",
category: "Pokemon",
hp: 320,
types: ["Water"],
evolveFrom: {
en: "Inteleon V",
fr: "Lézargus-V",
es: "Inteleon V",
it: "Inteleon-V",
pt: "Inteleon V",
de: "Intelleon-V"
},
stage: "VMAX",
retreat: 2,
regulationMark: "E",
illustrator: "5ban Graphics",
abilities: [{
type: "Ability",
name: {
en: "Double Gunner"
},
effect: {
en: "You must discard a Water Energy card from your hand in order to use this Ability. Once during your turn, you may choose 2 of your opponent's Benched Pokémon and put 2 damage counters on each of them."
}
}],
attacks: [{
cost: ["Water", "Colorless"],
name: {
en: "G-Max Spiral"
},
damage: "70+",
effect: {
en: "You may put an Energy attached to this Pokémon into your hand. If you do, this attack does 70 more damage."
}
}],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card