1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-07 10:39:18 +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,58 @@
import { Card } from '../../../interfaces'
import Set from '../Call of Legends'
const card: Card = {
name: {
en: "Groudon",
fr: "Groudon",
},
illustrator: "Yuri Umemura",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
383,
],
hp: 100,
types: [
"Fightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Fightning",
"Fightning",
"Fightning",
"Fightning",
],
name: {
en: "Volcano Stomp",
fr: "Écrasement volcanique",
},
effect: {
en: "Flip a coin. If heads, discard the top 4 cards of your opponent's deck. If tails, discard the top 4 cards of your deck.",
fr: "Lancez une pièce. Si cest face, défaussez les 4 premières cartes du deck de votre adversaire. Si cest pile, défaussez les 4 premières cartes de votre deck.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 4,
}
export default card