1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

95 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Arbok",
fr: "Arbok",
es: "Arbok",
it: "Arbok",
pt: "Arbok",
de: "Arbok"
},
illustrator: "Yukiko Baba",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
24,
],
hp: 120,
types: [
"Psychic",
],
evolveFrom: {
en: "Ekans",
fr: "Abo",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Wrap",
fr: "Ligotage",
es: "Constricción",
it: "Avvolgibotta",
pt: "Embrulho",
de: "Wickel"
},
effect: {
en: "Flip a coin. If heads, your opponents Active Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si cest face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente será Paralisado.",
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
},
damage: 30,
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Heavy Choke",
fr: "Étouffement Lourd",
es: "Fuerte Estrujón",
it: "Stretta Poderosa",
pt: "Asfixia Pesada",
de: "Würger"
},
effect: {
en: "If this Pokémon used Wrap during your last turn, this attack does 120 more damage.",
fr: "Si ce Pokémon a utilisé Ligotage pendant votre dernier tour, cette attaque inflige 120 dégâts supplémentaires.",
es: "Si este Pokémon usó Constricción durante tu último turno, este ataque hace 120 puntos de daño más.",
it: "Se questo Pokémon ha usato Avvolgibotta durante il tuo ultimo turno, questo attacco infligge 120 danni in più.",
pt: "Se este Pokémon usou Embrulho durante a sua última vez de jogar, este ataque causará 120 pontos de dano a mais.",
de: "Wenn dieses Pokémon während deines letzten Zuges Wickel eingesetzt hat, fügt diese Attacke 120 Schadenspunkte mehr zu."
},
damage: "50+",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card