1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 02:19:17 +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,69 @@
import { Card } from '../../../interfaces'
import Set from '../Burning Shadows'
const card: Card = {
name: {
en: "Azumarill",
fr: "Azumarill",
},
illustrator: "miki kudo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
184,
],
hp: 120,
types: [
"Water",
],
evolveFrom: {
en: "Marill",
fr: "Marill",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Thick Fat",
fr: "Isograisse",
},
effect: {
en: "This Pokémon takes 30 less damage from the attacks of your opponent's Fire or Water Pokémon (after applying Weakness and Resistance).",
fr: "Ce Pokémon subit 30 dégâts de moins provenant des attaques des Pokémon Fire ou Water de votre adversaire (après application de la Faiblesse et de la Résistance).",
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Waterfall",
fr: "Cascade",
},
damage: 80,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card