mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-06 13:29:55 +00:00
57 lines
1.1 KiB
TypeScript
57 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Destined Rivals"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Arrokuda",
|
|
fr: "Embrochet",
|
|
de: "Pikuda",
|
|
it: "Arrokuda",
|
|
es: "Arrokuda",
|
|
pt: "Arrokuda",
|
|
'es-mx': "Arrokuda"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Water"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Water"],
|
|
|
|
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 10 damage to itself.",
|
|
fr: "Ce Pokémon s'inflige aussi 10 dégâts.",
|
|
de: "Dieses Pokémon fügt auch sich selbst 10 Schadenspunkte zu.",
|
|
it: "Questo Pokémon infligge anche 10 danni a se stesso.",
|
|
es: "Este Pokémon también se hace 10 puntos de daño a sí mismo.",
|
|
pt: "Este Pokémon também causa 10 pontos de dano a si mesmo.",
|
|
'es-mx': "Este Pokémon también se hace 10 puntos de daño a sí mismo."
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "I",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |