1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
TCGdex [Bot] e7ceb7ac59
editor: correct variants for Paradox Rift (#513)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:09:39 +02:00

55 lines
1.3 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paradox Rift"
const card: Card = {
dexId: [361],
set: Set,
name: {
en: "Snorunt",
fr: "Stalgamin",
es: "Snorunt",
it: "Snorunt",
pt: "Snorunt",
de: "Schneppke"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
en: "Ice Shard",
fr: "Éclats Glace",
es: "Esquirla Helada",
it: "Geloscheggia",
pt: "Caco de Gelo",
de: "Eissplitter"
},
effect: {
en: "If your opponent's Active Pokémon is a Fighting Pokémon, this attack does 30 more damage.",
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon Fighting, cette attaque inflige 30 dégâts supplémentaires.",
es: "Si el Pokémon Activo de tu rival es un Pokémon Fighting, este ataque hace 30 puntos de daño más.",
it: "Se il Pokémon attivo del tuo avversario è un Pokémon Fighting, questo attacco infligge 30 danni in più.",
pt: "Se o Pokémon Ativo do seu oponente for um Pokémon Fighting, este ataque causará 30 pontos de dano a mais.",
de: "Wenn das Aktive Pokémon deines Gegners ein Fighting-Pokémon ist, fügt diese Attacke 30 Schadenspunkte mehr zu."
},
damage: "10+"
}],
retreat: 1,
regulationMark: "G",
variants: {
holo: false
}
}
export default card