1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
TCGdex [Bot] e36865e971
editor: fix temporal forces variants (#515)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:09:57 +02:00

55 lines
1010 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Temporal Forces"
const card: Card = {
dexId: [872],
set: Set,
name: {
en: "Snom",
fr: "Frissonille",
es: "Snom",
it: "Snom",
pt: "Snom",
de: "Snomnom"
},
rarity: "Common",
category: "Pokemon",
hp: 50,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
en: "Powder Snow",
fr: "Poudreuse",
es: "Nieve Polvo",
it: "Polneve",
pt: "Neve em Pó",
de: "Pulverschnee"
},
effect: {
en: "Your opponent's Active Pokémon is now Asleep.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
pt: "O Pokémon Ativo do seu oponente agora está Adormecido.",
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
},
damage: 10
}],
retreat: 2,
regulationMark: "H",
variants: {
holo: false
}
}
export default card