1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +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

67
data/Base/Fossil/37.ts Normal file
View File

@ -0,0 +1,67 @@
import { Card } from '../../../interfaces'
import Set from '../Fossil'
const card: Card = {
name: {
en: "Graveler",
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
75,
],
hp: 60,
types: [
"Fightning",
],
evolveFrom: {
en: "Geodude",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fightning",
"Fightning",
],
name: {
en: "Harden",
},
effect: {
en: "During your opponent's next turn, whenever 30 or less damage is done to Graveler (after applying Weakness and Resistance), prevent that damage. (Any other effects of attacks still happen.)",
},
},
{
cost: [
"Fightning",
"Fightning",
"Colorless",
],
name: {
en: "Rock Throw",
},
damage: 40,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card