1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,80 @@
import { Card } from '../../../interfaces'
import Set from '../Team Up'
const card: Card = {
name: {
en: "Alolan Golem",
fr: "Grolem dAlola",
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
76,
],
hp: 180,
types: [
"Lightning",
],
evolveFrom: {
en: "Alolan Graveler",
fr: "Gravalanch dAlola",
},
stage: "Stage2",
attacks: [
{
name: {
en: "Electromagnetic Bomb",
fr: "Bombe Électromagnétique",
},
effect: {
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: [
"Lightning",
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Super Zap Cannon",
fr: "Super Élecanon",
},
effect: {
en: "Discard 2 Energy from this Pokémon.",
fr: "Défaussez 2 Énergies de ce Pokémon.",
},
damage: 190,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 4,
}
export default card