mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
feat: Add Twilight Masquerade (#491)
This commit is contained in:
54
data/Scarlet & Violet/Twilight Masquerade/014.ts
Normal file
54
data/Scarlet & Violet/Twilight Masquerade/014.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Twilight Masquerade"
|
||||
|
||||
const card: Card = {
|
||||
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"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user