1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

114 lines
1.9 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "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",
fr: "https://assets.tcgdex.net/fr/xy/xy4/45/low",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy4/45/high",
fr: "https://assets.tcgdex.net/fr/xy/xy4/45/high",
},
},
evolveFrom: {
en: "Pumpkaboo",
fr: "Pitrouille",
},
tags: [
Tag.STAGE1,
],
illustrator: "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.RARE,
category: Category.POKEMON,
set: {
name: "Phantom Forces",
code: "xy4"
}
}
export default card