1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon cf25058e55
Updated
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-21 23:48:05 +01:00

107 lines
1.9 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../../../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: "sm9-37",
localId: 37,
// Card informations
name: {
en: "Alolan Golem",
fr: "Grolem dAlola",
},
hp: 180,
type: [
Type.LIGHTNING,
],
dexId: 76,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm9/37/low",
fr: "https://assets.tcgdex.net/fr/sm/sm9/37/low",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm9/37/high",
fr: "https://assets.tcgdex.net/fr/sm/sm9/37/high",
},
},
evolveFrom: {
en: "Alolan Graveler",
fr: "Gravalanch dAlola",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 27,
name: "kawayoo"
},
attacks: [{
name: {
en: "Electromagnetic Bomb",
fr: "Bombe Électromagnétique",
},
text: {
en: "Move any number of Lightning Energy from your Benched Pokémon to this Pokémon. This attack does 20 damage for each Energy card you moved in this way.",
fr: "Déplacez autant dÉnergies Lightning que vous voulez de vos Pokémon de Banc vers ce Pokémon. Cette attaque inflige 20 dégâts pour chaque carte Énergie déplacée de cette façon.",
},
damage: 20
},{
cost: [
Type.LIGHTNING,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Super Zap Cannon",
fr: "Super Élecanon",
},
text: {
en: "Discard 2 Energy from this Pokémon.",
fr: "Défaussez 2 Énergies de ce Pokémon.",
},
damage: 190
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.METAL,
value: "-20"
}],
retreat: 4,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Team Up",
code: "sm9"
}
}
export default card