mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-05 08:57:49 +00:00
118 lines
1.9 KiB
TypeScript
118 lines
1.9 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: "xy4-45",
|
||
localId: 45,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Gourgeist",
|
||
fr: "Banshitrouye",
|
||
},
|
||
|
||
hp: 100,
|
||
|
||
type: [
|
||
Type.PSYCHIC,
|
||
],
|
||
|
||
dexId: 711,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy4/45/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy4/45/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy4/45/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy4/45/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Pumpkaboo",
|
||
fr: "Pitrouille",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 40,
|
||
name: "Kanako Eo"
|
||
},
|
||
|
||
abilities: [{
|
||
id: 810,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Gourgantic",
|
||
},
|
||
text: {
|
||
en: "If this Pokémon has any Grass Energy attached to it, its maximum HP is 200.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.PSYCHIC,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Horror Note",
|
||
fr: "Gigantrouye",
|
||
},
|
||
text: {
|
||
en: "This attack does 10 damage times the number of cards in your hand.",
|
||
fr: "Si de l'Énergie Grass est attachée à ce Pokémon, ses PV maximum sont de 200.",
|
||
},
|
||
damage: 10
|
||
},{
|
||
cost: [
|
||
Type.PSYCHIC,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
fr: "Note Angoissante",
|
||
},
|
||
text: {
|
||
fr: "Cette attaque inflige 10 dégâts multipliés par le nombre de cartes dans votre main.",
|
||
},
|
||
damage: "10x"
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.DARKNESS,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.FIGHTING,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 3,
|
||
|
||
rarity: Rarity.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Phantom Forces",
|
||
code: "xy4"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|