mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
81 lines
1.6 KiB
TypeScript
81 lines
1.6 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Neo Genesis'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Azumarill",
|
||
fr: "Azumarill",
|
||
de: "Azumarill"
|
||
},
|
||
|
||
illustrator: "Ken Sugimori",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
184,
|
||
],
|
||
|
||
hp: 70,
|
||
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Marill",
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Tackle",
|
||
fr: "Charge",
|
||
de: "Tackle"
|
||
},
|
||
|
||
damage: 20,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Water",
|
||
"Water",
|
||
],
|
||
name: {
|
||
en: "Bubble Shower",
|
||
fr: "Douche de bulles",
|
||
de: "Bubble Shower"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed and this attack does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé et cette attaque inflige 10 dégâts à chacun des Pokémon du Banc de votre adversaire. (Ne pas appliquer la Faiblesse et la Résistance aux Pokémon du Banc.)",
|
||
de: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed and this attack does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)"
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
description: {
|
||
fr: "Lorsqu'il écoute attentivement sans bouger, il peut deviner ce qui se cache dans les rivières les plus sauvages et tumultueuses."
|
||
}
|
||
}
|
||
|
||
export default card
|