1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon ffdd3b4656
fix: Add Base serie translations (#161)
Signed-off-by: Avior <github@avior.me>
2021-11-12 17:07:41 +01:00

79 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
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",
attacks: [
{
cost: [
"Grass",
],
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,
},
{
cost: [
"Grass",
"Grass",
"Colorless",
],
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: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
description: {
fr: "Les motifs féroces peints sur son corps changent selon son environnement."
}
}
export default card