mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-10 16:01:59 +00:00
feat: Add Twilight Masquerade (#491)
This commit is contained in:
50
data/Scarlet & Violet/Twilight Masquerade/107.ts
Normal file
50
data/Scarlet & Violet/Twilight Masquerade/107.ts
Normal file
@@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Twilight Masquerade"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Hawlucha",
|
||||
fr: "Brutalibré",
|
||||
es: "Hawlucha",
|
||||
it: "Hawlucha",
|
||||
pt: "Hawlucha",
|
||||
de: "Resladero"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting", "Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Prize Count",
|
||||
fr: "Compteur de Récompense",
|
||||
es: "Cuenta de Premios",
|
||||
it: "Contapremi",
|
||||
pt: "Contagem de Prêmios",
|
||||
de: "Preiszähler"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If you have more Prize cards remaining than your opponent, this attack does 90 more damage.",
|
||||
fr: "S'il vous reste plus de cartes Récompense qu'à votre adversaire, cette attaque inflige 90 dégâts supplémentaires.",
|
||||
es: "Si te quedan más cartas de Premio que a tu rival, este ataque hace 90 puntos de daño más.",
|
||||
it: "Se hai più carte Premio rimanenti del tuo avversario, questo attacco infligge 90 danni in più.",
|
||||
pt: "Se você tiver mais cartas de Prêmio restantes do que seu oponente, este ataque causará 90 pontos de dano a mais.",
|
||||
de: "Wenn du mehr verbleibende Preiskarten hast als dein Gegner, fügt diese Attacke 90 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "50+"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user