mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 20:32:11 +00:00
96 lines
1.6 KiB
TypeScript
96 lines
1.6 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "sm3-35",
|
||
localId: 35,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Azumarill",
|
||
fr: "Azumarill",
|
||
},
|
||
|
||
hp: 120,
|
||
|
||
type: [
|
||
Type.WATER,
|
||
],
|
||
|
||
dexId: 184,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm3/35/low",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm3/35/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm3/35/high",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm3/35/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Marill",
|
||
fr: "Marill",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: "miki kudo",
|
||
|
||
abilities: [{
|
||
id: 70,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Thick Fat",
|
||
fr: "Isograisse",
|
||
},
|
||
text: {
|
||
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: [
|
||
Type.WATER,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Waterfall",
|
||
fr: "Cascade",
|
||
},
|
||
damage: 80
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.GRASS,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 3,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Burning Shadows",
|
||
code: "sm3"
|
||
}
|
||
}
|
||
|
||
export default card
|