mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
108 lines
1.7 KiB
TypeScript
108 lines
1.7 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: "bw10-46",
|
||
localId: 46,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Golurk",
|
||
fr: "Golemastoc",
|
||
},
|
||
|
||
hp: 130,
|
||
|
||
type: [
|
||
Type.PSYCHIC,
|
||
],
|
||
|
||
dexId: 623,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw10/46/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw10/46/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw10/46/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw10/46/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Golett",
|
||
fr: "Gringolem",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 48,
|
||
name: "Akira Komayama"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Iron Fist of Justice",
|
||
fr: "Poing de Fer Juste",
|
||
},
|
||
text: {
|
||
en: "If you have any Team Plasma Pokémon in play, this attack does nothing.",
|
||
fr: "Si vous avez un Pokémon de la Team Plasma en jeu, cette attaque ne fait rien.",
|
||
},
|
||
damage: 60
|
||
},{
|
||
cost: [
|
||
Type.PSYCHIC,
|
||
Type.PSYCHIC,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Shadow Punch",
|
||
fr: "Poing Ombre",
|
||
},
|
||
text: {
|
||
en: "This attack's damage isn't affected by Resistance.",
|
||
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
|
||
},
|
||
damage: 80
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.DARKNESS,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 4,
|
||
|
||
rarity: Rarity.RareHolo,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Plasma Blast",
|
||
code: "bw10"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|