mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
feat: Add Twilight Masquerade (#491)
This commit is contained in:
50
data/Scarlet & Violet/Twilight Masquerade/027.ts
Normal file
50
data/Scarlet & Violet/Twilight Masquerade/027.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Twilight Masquerade"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Ninetales",
|
||||
fr: "Feunard",
|
||||
es: "Ninetales",
|
||||
it: "Ninetales",
|
||||
pt: "Ninetales",
|
||||
de: "Vulnona"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Fire"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire", "Fire"],
|
||||
|
||||
name: {
|
||||
en: "Eerie Glow",
|
||||
fr: "Lueur Sinistre",
|
||||
es: "Resplandor Sobrecogedor",
|
||||
it: "Lucemistero",
|
||||
pt: "Brilho Misterioso",
|
||||
de: "Gruselglühen"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Burned and Confused.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé et Confus.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Confundido y Quemado.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene bruciato e confuso.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Confuso e Queimado.",
|
||||
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt und verwirrt."
|
||||
},
|
||||
|
||||
damage: 90
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user