1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

60 lines
899 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Greedent V",
fr: "Rongrigou V",
es: "Greedent V",
it: "Greedent V",
pt: "Greedent V",
de: "Schlaraffel V"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 210,
types: ["Colorless"],
stage: "Basic",
suffix: "V",
retreat: 2,
regulationMark: "E",
illustrator: "PLANETA Mochizuki",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
en: "Body Slam"
},
damage: 40,
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed."
}
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
en: "Nom-Nom-Nom Incisors"
},
damage: 120,
effect: {
en: "Draw 3 cards."
}
}],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card