1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-02 16:39: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,43 @@
import { Card } from "../../../interfaces"
import Set from "../Destined Rivals"
const card: Card = {
set: Set,
name: {
en: "Ethan's Slugma",
fr: "Limagma de Luth",
de: "Klarins Schneckmag",
it: "Slugma di Armonio",
es: "Slugma de Eco",
pt: "Slugma do Ethan",
'es-mx': "Slugma de Ethan"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Fire"],
stage: "Basic",
attacks: [{
cost: ["Fire"],
name: {
en: "Steady Firebreathing",
fr: "Crachage de Feu Régulier",
de: "Stetiger Feuerhauch",
it: "Soffiofuoco Mirato",
es: "Lanzallamas Continuo",
pt: "Hálito de Fogo Constante",
'es-mx': "Escupefuego"
},
damage: 20
}],
retreat: 2,
regulationMark: "I"
}
export default card