1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 15:42:11 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

77 lines
1.4 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Toxicroak",
fr: "Coatox"
},
illustrator: "Daisuke Ito",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
454,
],
hp: 90,
types: [
"Psychic",
],
evolveFrom: {
en: "Croagunk",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Poison Sacs",
fr: "Sacs de poison"
},
effect: {
en: "Your opponent can't remove the Special Condition Poisoned by evolving or devolving his or her Poisoned Pokémon. (This also includes putting a Pokémon Level-Up card onto the Poisoned Pokémon.)",
fr: "Votre adversaire ne peut pas retirer l'État Spécial Empoisonné en faisant évoluer ou en désévoluant ses Pokémon Empoisonnés. (Placer une carte Pokémon Niveau Sup sur le Pokémon Empoisonné inclus.)"
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Knuckle Claws",
fr: "Griffes articulées"
},
effect: {
en: "The Defending Pokémon is now Poisoned.",
fr: "Le Pokémon Défenseur est maintenant Empoisonné."
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "+20"
},
],
description: {
fr: "Les griffes de ses poings sécrètent une toxine si atroce qu'une simple égratignure peut s'avérer fatale."
}
}
export default card