mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
69
data/Sword & Shield/Fusion Strike/79.ts
Normal file
69
data/Sword & Shield/Fusion Strike/79.ts
Normal file
@ -0,0 +1,69 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Inteleon VMAX",
|
||||
fr: "Lézargus VMAX",
|
||||
es: "Inteleon VMAX",
|
||||
it: "Inteleon VMAX",
|
||||
pt: "Inteleon VMAX",
|
||||
de: "Intelleon VMAX"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
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
|
Reference in New Issue
Block a user