1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

104 lines
2.5 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 '../Sword & Shield'
const card: Card = {
name: {
en: "Toxicroak",
fr: "Coatox",
es: "Toxicroak",
it: "Toxicroak",
pt: "Toxicroak",
de: "Toxiquak"
},
illustrator: "Ryuta Fuse",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 110,
types: [
"Darkness",
],
evolveFrom: {
en: "Croagunk",
fr: "Cradopaud",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "More Poison",
fr: "Poison Sans Fin",
es: "Veneno Plus",
it: "Più Veleno",
pt: "Veneno a Mais",
de: "Giftschub"
},
effect: {
en: "Put 2 more damage counters on your opponents Poisoned Pokémon during Pokémon Checkup.",
fr: "Pendant le Contrôle Pokémon, placez 2 marqueurs de dégâts supplémentaires sur les Pokémon Empoisonnés de votre adversaire.",
es: "Pon 2 contadores de daño más en los Pokémon Envenenados de tu rival durante el Chequeo Pokémon.",
it: "Metti altri due segnalini danno sui Pokémon avvelenati del tuo avversario durante il controllo Pokémon.",
pt: "Coloque 2 contadores de dano a mais nos Pokémon Envenenados do seu oponente durante o Checape Pokémon.",
de: "Lege beim Pokémon-Check 2 Schadensmarken mehr auf die vergifteten Pokémon deines Gegners."
},
},
],
attacks: [
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Poison Claws",
fr: "Griffes Empoisonnées",
es: "Garras Venenosas",
it: "Velenartigli",
pt: "Garras Venenosas",
de: "Giftkrallen"
},
effect: {
en: "Flip a coin. If heads, your opponents Active Pokémon is now Poisoned.",
fr: "Lancez une pièce. Si cest face, le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Envenenado.",
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene avvelenato.",
pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente ficará Envenenado.",
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt vergiftet."
},
damage: 70,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
},
description: {
en: "It bounces toward opponents and gouges them with poisonous claws. No more than a scratch is needed to knock out its adversaries."
}
}
export default card