mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
62 lines
986 B
TypeScript
62 lines
986 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Greedent VMAX",
|
|
fr: "Rongrigou VMAX",
|
|
es: "Greedent VMAX",
|
|
it: "Greedent VMAX",
|
|
pt: "Greedent VMAX",
|
|
de: "Schlaraffel VMAX"
|
|
},
|
|
|
|
rarity: "Secret Rare",
|
|
category: "Pokemon",
|
|
hp: 320,
|
|
types: ["Colorless"],
|
|
|
|
evolveFrom: {
|
|
en: "Greedent V",
|
|
fr: "Rongrigou-V",
|
|
es: "Greedent V",
|
|
it: "Greedent-V",
|
|
pt: "Greedent V",
|
|
de: "Schlaraffel-V"
|
|
},
|
|
|
|
stage: "VMAX",
|
|
retreat: 3,
|
|
regulationMark: "E",
|
|
illustrator: "PLANETA Mochizuki",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Turn a Profit"
|
|
},
|
|
|
|
damage: 30,
|
|
|
|
effect: {
|
|
en: "If your opponent's Basic Pokémon is Knocked Out by damage from this attack, take 2 more Prize cards."
|
|
}
|
|
}, {
|
|
cost: ["Colorless", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Max Gimme Gimme"
|
|
},
|
|
|
|
damage: 160,
|
|
|
|
effect: {
|
|
en: "Draw 3 cards."
|
|
}
|
|
}]
|
|
}
|
|
|
|
export default card |