mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
107 lines
2.0 KiB
TypeScript
107 lines
2.0 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Steam Siege'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Azumarill",
|
||
fr: "Azumarill",
|
||
es: "Azumarill",
|
||
it: "Azumarill",
|
||
pt: "Azumarill",
|
||
de: "Azumarill"
|
||
},
|
||
illustrator: "Sanosuke Sakuma",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
184,
|
||
],
|
||
hp: 100,
|
||
types: [
|
||
"Fairy",
|
||
"Water",
|
||
],
|
||
evolveFrom: {
|
||
en: "Marill",
|
||
fr: "Marill",
|
||
es: "Marill",
|
||
it: "Marill",
|
||
pt: "Marill",
|
||
de: "Marill"
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Play Rough",
|
||
fr: "Câlinerie",
|
||
es: "Carantoña",
|
||
it: "Carineria",
|
||
pt: "Jogo Duro",
|
||
de: "Knuddler"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, this attack does 30 more damage.",
|
||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires.",
|
||
es: "Lanza 1 moneda. Si sale cara, este ataque hace 30 puntos de daño más.",
|
||
it: "Lancia una moneta. Se esce testa, questo attacco infligge 30 danni in più.",
|
||
pt: "Jogue uma moeda. Se sair cara, este ataque causará 30 de danos adicionais.",
|
||
de: "Wirf 1 Münze. Bei \"Kopf\" fügt dieser Angriff 30 weitere Schadenspunkte zu."
|
||
},
|
||
damage: "30+",
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fairy",
|
||
"Fairy",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Bubble Drain",
|
||
fr: "Vide Bulle",
|
||
es: "Drenaje Burbujas",
|
||
it: "Assorbibolla",
|
||
pt: "Dreno de Bolha",
|
||
de: "Blasengully"
|
||
},
|
||
effect: {
|
||
en: "Heal 30 damage from this Pokémon.",
|
||
fr: "Soignez 30 dégâts à ce Pokémon.",
|
||
es: "Cura 30 puntos de daño a este Pokémon.",
|
||
it: "Cura questo Pokémon da 30 danni.",
|
||
pt: "Cure 30 de danos deste Pokémon.",
|
||
de: "Heile 30 Schadenspunkte bei diesem Pokémon."
|
||
},
|
||
damage: 80,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Metal",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Darkness",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 2,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|