1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 17:39:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

117
cards/xy/xy4/45.ts Normal file
View File

@ -0,0 +1,117 @@
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