mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-08 19:19:19 +00:00
79 lines
2.1 KiB
TypeScript
79 lines
2.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Destined Rivals"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Arven's Toedscruel",
|
|
fr: "Terracruel de Pepper",
|
|
de: "Peppers Tenterra",
|
|
it: "Toedscruel di Pepe",
|
|
es: "Toedscruel de Damián",
|
|
pt: "Toedscruel do Arven",
|
|
'es-mx': "Toedscruel de Damián"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 140,
|
|
types: ["Fighting"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Pull",
|
|
fr: "Tirer",
|
|
de: "Ziehen",
|
|
it: "Tira",
|
|
es: "Tirar",
|
|
pt: "Puxar",
|
|
'es-mx': "Jalar"
|
|
},
|
|
|
|
effect: {
|
|
en: "Switch in 1 of your opponent's Benched Pokémon to the Active Spot.",
|
|
fr: "Envoyez l'un des Pokémon de Banc de votre adversaire sur le Poste Actif.",
|
|
de: "Wechsle 1 Pokémon von der Bank deines Gegners in die Aktive Position ein.",
|
|
it: "Sostituisci uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon in posizione attiva.",
|
|
es: "Cambia 1 de los Pokémon en Banca de tu rival por el Pokémon que esté en el Puesto Activo.",
|
|
pt: "Mande 1 dos Pokémon no Banco do seu oponente para o Campo Ativo.",
|
|
'es-mx': "Cambia 1 de los Pokémon en Banca de tu rival por el Pokémon que esté en el Puesto Activo."
|
|
}
|
|
}, {
|
|
cost: ["Colorless", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Reckless Charge",
|
|
fr: "Attaque Imprudente",
|
|
de: "Waghalsiger Sturmangriff",
|
|
it: "Carica Avventata",
|
|
es: "Carga Descuidada",
|
|
pt: "Carga Indomável",
|
|
'es-mx': "Carga Temeraria"
|
|
},
|
|
|
|
effect: {
|
|
en: "This Pokémon also does 30 damage to itself.",
|
|
fr: "Ce Pokémon s'inflige aussi 30 dégâts.",
|
|
de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu.",
|
|
it: "Questo Pokémon infligge anche 30 danni a se stesso.",
|
|
es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.",
|
|
pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.",
|
|
'es-mx': "Este Pokémon también se hace 30 puntos de daño a sí mismo."
|
|
},
|
|
|
|
damage: 120
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "I",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |