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:
57
data/Scarlet & Violet/Destined Rivals/027.ts
Normal file
57
data/Scarlet & Violet/Destined Rivals/027.ts
Normal file
@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Destined Rivals"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Growlithe",
|
||||
fr: "Caninos",
|
||||
de: "Fukano",
|
||||
it: "Growlithe",
|
||||
es: "Growlithe",
|
||||
pt: "Growlithe",
|
||||
'es-mx': "Growlithe"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
en: "Live Coal",
|
||||
fr: "Charbon Mutant",
|
||||
de: "Glühende Kohlen",
|
||||
it: "Carboni Ardenti",
|
||||
es: "Carbón Activado",
|
||||
pt: "Carvão Vivo",
|
||||
'es-mx': "Carbón Activado"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Dig Claws",
|
||||
fr: "Creusogriffes",
|
||||
de: "Schaufelkrallen",
|
||||
it: "Scavazanne",
|
||||
es: "Hundir Garras",
|
||||
pt: "Fincar Garras",
|
||||
'es-mx': "Clavar Garras"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user