mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
99 lines
1.9 KiB
TypeScript
99 lines
1.9 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: "sm9-32",
|
||
localId: 32,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Articuno",
|
||
fr: "Artikodin",
|
||
},
|
||
|
||
hp: 110,
|
||
|
||
type: [
|
||
Type.WATER,
|
||
],
|
||
|
||
dexId: 144,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm9/32/low",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm9/32/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm9/32/high",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm9/32/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: "Yusuke Ohmura",
|
||
|
||
abilities: [{
|
||
id: 1278,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Blizzard Veil",
|
||
fr: "Voile Blizzard",
|
||
},
|
||
text: {
|
||
en: "As long as this Pokémon is your Active Pokémon, whenever your opponent plays a Supporter card from their hand, prevent all effects of that card done to your Benched Water Pokémon.",
|
||
fr: "Tant que ce Pokémon est votre Pokémon Actif, chaque fois que votre adversaire joue une carte Supporter de sa main, évitez tous les effets de cette carte sur vos Pokémon Water de Banc.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.WATER,
|
||
Type.WATER
|
||
],
|
||
name: {
|
||
en: "Cold Cyclone",
|
||
fr: "Cyclone Froid",
|
||
},
|
||
text: {
|
||
en: "Move 2 Water Energy from this Pokémon to 1 of your Benched Pokémon.",
|
||
fr: "Déplacez 2 Énergies Water de ce Pokémon vers l’un de vos Pokémon de Banc.",
|
||
},
|
||
damage: 70
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.LIGHTNING,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.FIGHTING,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Team Up",
|
||
code: "sm9"
|
||
}
|
||
}
|
||
|
||
export default card
|