1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +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,23 +4,26 @@ import Set from '../Base Set'
const card: Card = {
name: {
en: "Sandshrew",
fr: "Sabelette"
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
27,
],
hp: 40,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
@ -28,20 +31,24 @@ const card: Card = {
],
name: {
en: "Sand-attack",
fr: "Jet de Sable"
},
effect: {
en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.",
fr: "Si le Pokémon Défenseur essaie d'attaquer pendant le prochain tour de votre adversaire, votre adversaire doit lancer une pièce. Si c'est pile, l'attaque est sans effet."
},
damage: 10,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
@ -49,9 +56,9 @@ const card: Card = {
},
],
description: {
fr: "Il s'enterre dans les régions arides et désertiques. Il émerge seulement pour chasser."
}
}
export default card