1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

fix: Add Base serie translations (#161)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-11-12 17:07:41 +01:00
committed by GitHub
parent 3b8e87e284
commit ffdd3b4656
337 changed files with 4395 additions and 2387 deletions

View File

@ -4,24 +4,29 @@ import Set from '../Fossil'
const card: Card = {
name: {
en: "Golem",
fr: "Grolem"
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
76,
],
hp: 80,
types: [
"Fighting",
],
evolveFrom: {
en: "Graveler",
},
stage: "Stage2",
stage: "Stage2",
attacks: [
{
@ -33,6 +38,7 @@ const card: Card = {
],
name: {
en: "Avalanche",
fr: "Avalanche"
},
damage: 60,
@ -47,14 +53,17 @@ const card: Card = {
],
name: {
en: "Selfdestruct",
fr: "Destruction"
},
effect: {
en: "Does 20 damage to each Pokémon on each player's Bench. (Don't apply Weakness and Resistance for Benched Pokémon.) Golem does 100 damage to itself.",
fr: "Inflige 20 dégâts à chacun des Pokémon du Banc de chaque joueur. (Ne pas appliquer la Faiblesse et la Résistance aux Pokémon du Banc.) Grolem s'inflige 100 dégâts."
},
damage: 100,
},
],
weaknesses: [
{
type: "Grass",
@ -62,10 +71,9 @@ const card: Card = {
},
],
description: {
fr: "Son corps de pierre est indestructible. Il peut supporter des explosions de dynamite."
}
}
export default card