mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 21:02:15 +00:00
117 lines
1.9 KiB
TypeScript
117 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: "xy7-35",
|
||
localId: 35,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Golurk",
|
||
fr: "Golemastoc",
|
||
},
|
||
|
||
hp: 130,
|
||
|
||
type: [
|
||
Type.PSYCHIC,
|
||
],
|
||
|
||
dexId: 623,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy7/35/low",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy7/35/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy7/35/high",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy7/35/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Golett",
|
||
fr: "Gringolem",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: "kawayoo",
|
||
|
||
abilities: [{
|
||
id: 771,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Double Type",
|
||
fr: "Type Double",
|
||
},
|
||
text: {
|
||
en: "As long as this Pokémon is in play, it is Psychic and Fighting type.",
|
||
fr: "Tant que ce Pokémon est en jeu, il est de type Psychic et Fighting.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Superpower",
|
||
fr: "Stop Θ",
|
||
},
|
||
text: {
|
||
en: "You may do 40 more damage. If you do, this Pokémon does 20 damage to itself.",
|
||
},
|
||
damage: 80
|
||
},{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
fr: "Surpuissance",
|
||
},
|
||
text: {
|
||
fr: "Vous pouvez infliger 40 dégâts supplémentaires. Dans ce cas, ce Pokémon s'inflige 20 dégâts.",
|
||
},
|
||
damage: "80+"
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.DARKNESS,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.FIGHTING,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 4,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Ancient Origins",
|
||
code: "xy7"
|
||
}
|
||
}
|
||
|
||
export default card
|