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

77 lines
1.5 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 '../Aquapolis'
const card: Card = {
name: {
en: "Azumarill",
fr: "Azumarill",
de: "Azumarill"
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
184,
],
hp: 70,
types: [
"Water",
],
evolveFrom: {
en: "Marill",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Bubble Turn",
fr: "Tourne-bulle",
de: "Bubble Turn"
},
effect: {
en: "Once during your turn (before your attack), if Azumarill is on your bench, you may flip a coin. If heads, return Azumarill and all cards attached to it to your hand.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si Azumarill est sur votre Banc, vous pouvez lancer une pièce. Si c'est face, renvoyez Azumarill et toutes les cartes qui y sont attachées dans votre main.",
de: "Once during your turn (before your attack), if Azumarill is on your Bench, you may flip a coin. If heads, return Azumarill and all cards attached to it to your hand."
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Aqua Sonic",
fr: "Aquasonique",
de: "Aqua Sonic"
},
effect: {
en: "Don't apply Resistance.",
fr: "N'appliquez pas la Résistance.",
de: "Don't apply Resistance."
},
damage: 40,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card