1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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: "Sandslash",
fr: "Sablaireau"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
28,
],
hp: 70,
types: [
"Fighting",
],
evolveFrom: {
en: "Sandshrew",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@ -31,6 +36,7 @@ const card: Card = {
],
name: {
en: "Slash",
fr: "Tranche"
},
damage: 20,
@ -43,20 +49,24 @@ const card: Card = {
],
name: {
en: "Fury Swipes",
fr: "Combo-griffe"
},
effect: {
en: "Flip 3 coins. This attack does 20 damage times the number of heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de faces."
},
damage: 20,
damage: "20×",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
@ -64,9 +74,9 @@ const card: Card = {
},
],
description: {
fr: "Il se roule en boule hérissée de piques s'il est menacé. Il peut ainsi s'enfuir ou attaquer."
}
}
export default card