1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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

123
cards/sm/sm4/113.ts Normal file
View File

@ -0,0 +1,123 @@
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: "sm4-113",
localId: 113,
// Card informations
name: {
en: "Alolan Golem-GX",
fr: "Grolem dAlola-GX",
},
hp: 250,
type: [
Type.LIGHTNING,
],
dexId: 76,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm4/113/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm4/113/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm4/113/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm4/113/high.png",
},
},
evolveFrom: {
en: "Alolan Graveler",
fr: "Gravalanch dAlola",
},
tags: [
Tag.GX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.LIGHTNING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Hammer In",
fr: "Enfoncement",
},
damage: 80
},{
cost: [
Type.LIGHTNING,
Type.LIGHTNING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Super Electromagnetic Tackle",
fr: "Super Charge Électromagnétique",
},
text: {
en: "This Pokémon does 50 damage to itself.",
fr: "Ce Pokémon sinflige 50 dégâts.",
},
damage: 200
},{
cost: [
Type.LIGHTNING,
Type.LIGHTNING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Heavy Rock-GX",
fr: "Lourd Rocher-GX",
},
text: {
en: "Your opponent can't play any cards from their hand during their next turn. (You can't use more than 1 GX attack in a game.)",
fr: "Votre adversaire ne peut pas jouer de carte de sa main pendant son prochain tour. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 100
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.METAL,
value: "-20"
}],
retreat: 4,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Crimson Invasion",
code: "sm4"
}
}
export default card