mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add Twilight Masquerade (#491)
This commit is contained in:
54
data/Scarlet & Violet/Twilight Masquerade/137.ts
Normal file
54
data/Scarlet & Violet/Twilight Masquerade/137.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Twilight Masquerade"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Aipom",
|
||||
fr: "Capumain",
|
||||
es: "Aipom",
|
||||
it: "Aipom",
|
||||
pt: "Aipom",
|
||||
de: "Griffel"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Hang Down",
|
||||
fr: "Suspension",
|
||||
es: "Prender",
|
||||
it: "Tirar Giù",
|
||||
pt: "Dependurar",
|
||||
de: "Herunterhängen"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Playful Kick",
|
||||
fr: "Coup de Pied de Garnement",
|
||||
es: "Patada Juguetona",
|
||||
it: "Calcio Briccone",
|
||||
pt: "Chute Brincalhão",
|
||||
de: "Verspielter Kick"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user