mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
96 lines
1.5 KiB
TypeScript
96 lines
1.5 KiB
TypeScript
import Card from '../../../interfaces/Card'
|
||
import Type from '../../../interfaces/Type'
|
||
import Tag from '../../../interfaces/Tag'
|
||
import Rarity from '../../../interfaces/Rarity'
|
||
import AbilityType from '../../../interfaces/AbilityType'
|
||
import Category from '../../../interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "sm8-53",
|
||
localId: 53,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Alolan Vulpix",
|
||
fr: "Goupix d’Alola",
|
||
},
|
||
|
||
hp: 60,
|
||
|
||
type: [
|
||
Type.WATER,
|
||
],
|
||
|
||
dexId: 37,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm8/53/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm8/53/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/sm/sm8/53/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/sm/sm8/53/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 23,
|
||
name: "Naoyo Kimura"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 1228,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Secret Alleyway",
|
||
fr: "Allée Secrète",
|
||
},
|
||
text: {
|
||
en: "If you have any Fairy Pokémon in play, this Pokémon has no Retreat Cost.",
|
||
fr: "Si vous avez au moins un Pokémon Fairy en jeu, ce Pokémon n’a pas de Coût de Retraite.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Gnaw",
|
||
fr: "Ronge",
|
||
},
|
||
damage: 20
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.METAL,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.Common,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Lost Thunder",
|
||
code: "sm8"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|