mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
feat: Add Twilight Masquerade (#491)
This commit is contained in:
63
data/Scarlet & Violet/Twilight Masquerade/053.ts
Normal file
63
data/Scarlet & Violet/Twilight Masquerade/053.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Twilight Masquerade"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Froslass",
|
||||
fr: "Momartik",
|
||||
es: "Froslass",
|
||||
it: "Froslass",
|
||||
pt: "Froslass",
|
||||
de: "Frosdedje"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Water"],
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Freezing Shroud",
|
||||
fr: "Voile Glaçant",
|
||||
es: "Manto Helador",
|
||||
it: "Manto Glaciale",
|
||||
pt: "Manto Congelante",
|
||||
de: "Frosthülle"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During Pokémon Checkup, put 1 damage counter on each Pokémon that has an Ability (both yours and your opponent's), except any Froslass.",
|
||||
fr: "Pendant le Contrôle Pokémon, placez un marqueur de dégâts sur chacun des Pokémon ayant un talent (les vôtres et ceux de votre adversaire), à l'exception de Momartik.",
|
||||
es: "Durante el Chequeo Pokémon, pon 1 contador de daño en cada Pokémon que tenga una habilidad (tanto tuyos como de tu rival), excepto en los Froslass.",
|
||||
it: "Durante il controllo Pokémon, metti un segnalino danno su ciascun Pokémon che ha un'abilità, sia tuo che del tuo avversario, a eccezione di qualsiasi Froslass.",
|
||||
pt: "Durante o Checape Pokémon, coloque 1 contador de dano em cada Pokémon que tem uma Habilidade (seus e do seu oponente), exceto por quaisquer Froslass.",
|
||||
de: "Lege beim Pokémon-Check 1 Schadensmarke auf jedes Pokémon (deine und die deines Gegners), das eine Fähigkeit hat, außer Frosdedje."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Frost Smash",
|
||||
fr: "Impact Glacial",
|
||||
es: "Golpe Gélido",
|
||||
it: "Gelocolpo",
|
||||
pt: "Pancada Congelada",
|
||||
de: "Frostschlag"
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user