mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
85 lines
1.5 KiB
TypeScript
85 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Aquapolis'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Donphan",
|
||
fr: "Donphan",
|
||
de: "Donphan"
|
||
},
|
||
illustrator: "Mitsuhiro Arita",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
232,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Fighting",
|
||
],
|
||
evolveFrom: {
|
||
en: "Phanpy",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
],
|
||
name: {
|
||
en: "Earthquake",
|
||
fr: "Séisme",
|
||
de: "Earthquake"
|
||
},
|
||
effect: {
|
||
en: "Does 10 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
fr: "Inflige 10 dégâts à chacun des Pokémon de votre propre Banc. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon du Banc.)",
|
||
de: "Does 10 damage to each of your own Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)"
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Double Stab",
|
||
fr: "Coup double",
|
||
de: "Double Stab"
|
||
},
|
||
effect: {
|
||
en: "Flip 2 coins. This attack does 40 damage times the number of heads.",
|
||
fr: "Lancez 2 pièces. Cette attaque fait 40 dégâts multipliés par le nombre de faces.",
|
||
de: "Flip 2 coins. This attack does 40 damage times the number of heads."
|
||
},
|
||
damage: "40x",
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Grass",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Lightning",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|