1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +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: "Arbok",
fr: "Arbok"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
24,
],
hp: 60,
types: [
"Grass",
],
evolveFrom: {
en: "Ekans",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@ -30,9 +35,11 @@ const card: Card = {
],
name: {
en: "Terror Strike",
fr: "Raid terrifiant"
},
effect: {
en: "Flip a coin. If heads and if your opponent has any Benched Pokémon, he or she chooses 1 of them and switches it with the Defending Pokémon. (Do the damage before switching the Pokémon.)",
fr: "Lancez une pièce. Si c'est face et si votre adversaire a un ou plusieurs Pokémon sur son Banc, il choisit l'un d'eux et l'échange avec son Pokémon Défenseur. (Infligez les dégâts avant d'échanger les Pokémon.)"
},
damage: 10,
@ -45,14 +52,17 @@ const card: Card = {
],
name: {
en: "Poison Fang",
fr: "Croc-poison"
},
effect: {
en: "The Defending Pokémon is now Poisoned.",
fr: "Le Pokémon Défenseur est maintenant Empoisonné."
},
damage: 30,
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
@ -60,10 +70,9 @@ const card: Card = {
},
],
description: {
fr: "Les motifs féroces peints sur son corps changent selon son environnement."
}
}
export default card