1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,81 @@
import { Card } from '../../../interfaces'
import Set from '../Primal Clash'
const card: Card = {
name: {
en: "Azumarill",
fr: "Azumarill",
},
illustrator: "MAHOU",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
184,
],
hp: 90,
types: [
"Fairy",
],
evolveFrom: {
en: "Marill",
fr: "Marill",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Bubble Beam",
fr: "Bulles d'O",
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
},
damage: 30,
},
{
cost: [
"Fairy",
"Colorless",
"Colorless",
],
name: {
en: "Superpower",
fr: "Surpuissance",
},
effect: {
en: "You may do 30 more damage. If you do, this Pokémon does 30 damage to itself.",
fr: "Vous pouvez infliger 30 dégâts supplémentaires. Dans ce cas, ce Pokémon s'inflige 30 dégâts.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 2,
}
export default card