1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

90 lines
1.1 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Golem",
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
76,
],
types: [
"Fighting",
],
evolveFrom: {
en: "Graveler",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Lunge Out",
},
damage: 50,
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Tumble Down",
},
effect: {
en: "Discard as many Fighting Energy cards as you like from your hand. This attack does 30 damage times the number of Fighting Energy cards you discarded.",
},
damage: "30x",
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Rock Tumble",
},
effect: {
en: "This attack's damage isn't affected by Resistance.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Grass",
value: "+30"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 4,
}
export default card