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

54 lines
1.0 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paradox Rift"
const card: Card = {
set: Set,
name: {
en: "Naclstack",
fr: "Amassel",
es: "Naclstack",
it: "Naclstack",
pt: "Naclstack",
de: "Sedisal"
},
rarity: "Common",
category: "Pokemon",
hp: 100,
types: ["Fighting"],
stage: "Stage1",
attacks: [{
cost: ["Fighting", "Fighting"],
name: {
en: "Rocky Tackle",
fr: "Tacle Rocailleux",
es: "Placaje Rocoso",
it: "Azione Rocciosa",
pt: "Investida Pedregosa",
de: "Steiniger Tackle"
},
effect: {
en: "This Pokémon also does 30 damage to itself.",
fr: "Ce Pokémon s'inflige aussi 30 dégâts.",
es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.",
it: "Questo Pokémon infligge anche 30 danni a se stesso.",
pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.",
de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu."
},
damage: 80
}],
retreat: 3,
regulationMark: "G",
variants: {
holo: false
}
}
export default card