1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32: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

94 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 '../Lost Thunder'
const card: Card = {
name: {
en: "Toxapex",
fr: "Prédastérie",
es: "Toxapex",
it: "Toxapex",
pt: "Toxapex",
de: "Aggrostella"
},
illustrator: "kirisAki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
748,
],
hp: 120,
types: [
"Water",
],
evolveFrom: {
en: "Mareanie",
fr: "Vorastérie",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Poison Sting",
fr: "Dard-Venin",
es: "Picotazo Veneno",
it: "Velenospina",
pt: "Ferrão Venenoso",
de: "Giftstachel"
},
effect: {
en: "Your opponents Active Pokémon is now Poisoned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
es: "El Pokémon Activo de tu rival pasa a estar Envenenado.",
it: "Il Pokémon attivo del tuo avversario viene avvelenato.",
pt: "O Pokémon Ativo do seu oponente agora está Envenenado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet."
},
},
{
cost: [
"Water",
"Water",
],
name: {
en: "Venom Fever",
fr: "Fièvre Envenimée",
es: "Fiebre Venenosa",
it: "Febbre Tossica",
pt: "Febre de Veneno",
de: "Giftfieber"
},
effect: {
en: "If your opponents Active Pokémon is Poisoned, this attack does 50 damage for each damage counter on that Pokémon.",
fr: "Si le Pokémon Actif de votre adversaire est Empoisonné, cette attaque inflige 50 dégâts pour chaque marqueur de dégâts placé sur ce Pokémon.",
es: "Si el Pokémon Activo de tu rival está Envenenado, este ataque hace 50 puntos de daño por cada contador de daño en ese Pokémon.",
it: "Se il Pokémon attivo del tuo avversario è avvelenato, questo attacco infligge 50 danni per ogni segnalino danno presente su quel Pokémon.",
pt: "Se o Pokémon Ativo do seu oponente estiver Envenenado, este ataque causará 50 pontos de dano para cada contador de dano naquele Pokémon.",
de: "Wenn das Aktive Pokémon deines Gegners vergiftet ist, fügt diese Attacke 50 Schadenspunkte mal der Anzahl der Schadensmarken auf jenem Pokémon zu."
},
damage: "50×",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card