1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

79 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Deoxys'
const card: Card = {
name: {
en: "Donphan",
fr: "Donphan",
de: "Donphan"
},
illustrator: "Yuka Morii",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
232,
],
hp: 80,
types: [
"Fighting",
],
evolveFrom: {
en: "Phanpy",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Spinning Horn",
fr: "Corne tournante",
de: "Spinning Horn"
},
effect: {
en: "Does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 10 dégâts à chacun des Pokémon de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
de: "Does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)"
},
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Rock Hurl",
fr: "Lance-pierre",
de: "Rock Hurl"
},
effect: {
en: "This attack's damage is not affected by Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
de: "This attack's damage is not affected by Resistance."
},
damage: 50,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card