mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-01 20:09:55 +00:00
44 lines
702 B
TypeScript
44 lines
702 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Alolan Graveler"
|
|
},
|
|
|
|
illustrator: "match",
|
|
rarity: "Two Diamond",
|
|
category: "Pokemon",
|
|
hp: 110,
|
|
types: ["Lightning"],
|
|
|
|
evolveFrom: {
|
|
en: "Alolan Geodude"
|
|
},
|
|
|
|
description: {
|
|
en: "When two Graveler fight each other, it fills the surroundings with flashes of light and sound. People call it the \"fireworks of the earth.\""
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Heavy Impact"
|
|
},
|
|
|
|
damage: 60,
|
|
cost: ["Lightning", "Colorless", "Colorless"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Fighting",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 3
|
|
}
|
|
|
|
export default card |