mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
87 lines
2.0 KiB
TypeScript
87 lines
2.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../SWSH Black Star Promos'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Donphan",
|
||
fr: "Donphan",
|
||
es: "Donphan",
|
||
it: "Donphan",
|
||
pt: "Donphan",
|
||
de: "Donphan"
|
||
},
|
||
|
||
illustrator: "Eri Yamaki",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
hp: 150,
|
||
types: ["Fighting"],
|
||
|
||
evolveFrom: {
|
||
en: "Phanpy",
|
||
fr: "Phanpy"
|
||
},
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Earthquake",
|
||
fr: "Séisme",
|
||
es: "Terremoto",
|
||
it: "Terremoto",
|
||
pt: "Earthquake",
|
||
de: "Erdbeben"
|
||
},
|
||
|
||
effect: {
|
||
en: "This attack also does 20 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
fr: "Cette attaque inflige aussi 20 dégâts à chacun de vos Pokémon de Banc. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||
es: "Este ataque también hace 20 puntos de daño a cada uno de tus Pokémon en Banca. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
||
it: "Questo attacco infligge anche 20 danni a ciascuno dei Pokémon nella tua panchina. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
||
pt: "This attack also does 20 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
de: "Diese Attacke fügt auch jedem Pokémon auf deiner Bank 20 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||
},
|
||
|
||
damage: 120,
|
||
cost: ["Fighting"]
|
||
}, {
|
||
name: {
|
||
en: "Heavy Impact",
|
||
fr: "Gros Impact",
|
||
es: "Impacto Pesado",
|
||
it: "Impatto Pesante",
|
||
pt: "Heavy Impact",
|
||
de: "Schwerer Einschlag"
|
||
},
|
||
|
||
damage: 90,
|
||
cost: ["Fighting", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 4,
|
||
|
||
description: {
|
||
en: "The longer and bigger its tusks, the higher its rank in its herd. The tusks take long to grow."
|
||
},
|
||
|
||
stage: "Stage1",
|
||
dexId: [232],
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|