1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +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: "Toxel",
fr: "Toxizap",
es: "Toxel",
it: "Toxel",
pt: "Toxel",
de: "Toxel"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Lightning"],
stage: "Basic",
attacks: [{
cost: ["Lightning", "Lightning"],
name: {
en: "Whimsy Tackle",
fr: "Charge Bizarre",
es: "Placaje Caprichoso",
it: "Capriccioazione",
pt: "Investida Fantástica",
de: "Launischer Tackle"
},
effect: {
en: "Flip a coin. If tails, this attack does nothing.",
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.",
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada.",
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto.",
pt: "Jogue uma moeda. Se sair coroa, este ataque não fará nada.",
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen."
},
damage: 60
}],
retreat: 2,
regulationMark: "G",
variants: {
holo: false
}
}
export default card