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/001.ts
Normal file
54
data/Scarlet & Violet/Twilight Masquerade/001.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Twilight Masquerade"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Tangela",
|
||||
fr: "Saquedeneu",
|
||||
es: "Tangela",
|
||||
it: "Tangela",
|
||||
pt: "Tangela",
|
||||
de: "Tangela"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Gentle Slap",
|
||||
fr: "Gifle Douce",
|
||||
es: "Bofetada Gentil",
|
||||
it: "Schiaffetto",
|
||||
pt: "Tapinha",
|
||||
de: "Sanfter Hieb"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Grass", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Vine Slap",
|
||||
fr: "Gifle de Liane",
|
||||
es: "Bofetón Látigo",
|
||||
it: "Lianasberla",
|
||||
pt: "Tapa de Vinhas",
|
||||
de: "Rankenklatscher"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user