1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
TCGdex [Bot] c10020a9a9
editor: change Twilight Masquerade variants (#516)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:16:16 +02:00

59 lines
841 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Twilight Masquerade"
const card: Card = {
dexId: [810],
set: Set,
name: {
en: "Grookey",
fr: "Ouistempo",
es: "Grookey",
it: "Grookey",
pt: "Grookey",
de: "Chimpep"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
en: "Smash Kick",
fr: "Coud'Pattes",
es: "Patada Destrucción",
it: "Calcio Esplosivo",
pt: "Chute Poderoso",
de: "Schmetterkick"
},
damage: 10
}, {
cost: ["Grass", "Grass"],
name: {
en: "Branch Poke",
fr: "Tapotige",
es: "Punzada Rama",
it: "Ramostoccata",
pt: "Cutucada com Galho",
de: "Zweigstoß"
},
damage: 30
}],
retreat: 1,
regulationMark: "H",
variants: {
holo: false
}
}
export default card