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

71 lines
1.3 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 '../Team Rocket Returns'
const card: Card = {
name: {
en: "Azumarill",
de: "Azumarill"
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
184,
],
hp: 80,
types: [
"Water",
],
evolveFrom: {
en: "Marill",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Froth",
de: "Froth"
},
effect: {
en: "Once during your turn, when you play Azumarill from your hand to evolve 1 of your Active Pokémon, you may use this power. Each Defending Pokémon is now Paralyzed.",
de: "Once during your turn, when you play Azumarill from your hand to evolve 1 of your Active Pokémon, you may use this power. Each Defending Pokémon is now Paralyzed."
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Water Punch",
de: "Water Punch"
},
effect: {
en: "Flip a coin for each Water Energy attached to Azumarill. This attack does 20 damage plus 20 more damage for each heads.",
de: "Flip a coin for each Energy attached to Azumarill. This attack does 20 damage plus 20 more damage for each heads."
},
damage: "20+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card