1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-30 15:59:18 +00:00

feat: Add sv10 - Destined Rivals (#751)

This commit is contained in:
2025-05-30 22:30:18 +02:00
committed by GitHub
parent 51da484016
commit 2d5cf729c8
245 changed files with 14806 additions and 0 deletions

View File

@ -0,0 +1,53 @@
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"
}
export default card