1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon 3c93a3534c
Some checks failed
Build / build (push) Failing after 59s
feat: Add Scarlet & violet three first sets (#446)
2023-11-12 14:56:22 +01:00

63 lines
1.2 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
set: Set,
name: {
fr: "Coatox",
en: "Toxicroak",
es: "Toxicroak",
it: "Toxicroak",
pt: "Toxicroak",
de: "Toxiquak"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
stage: "Stage1",
attacks: [{
cost: ["Fighting"],
name: {
fr: "Transpercement",
en: "Pierce",
es: "Perforar",
it: "Perforare",
pt: "Perfurar",
de: "Durchbohren"
},
damage: 30
}, {
cost: ["Fighting", "Colorless"],
name: {
fr: "Griffes Articulées",
en: "Knuckle Claws",
es: "Garras Nudillo",
it: "Noccartigli",
pt: "Garras Articuladas",
de: "Knöchelkralle"
},
effect: {
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
en: "Your opponent's Active Pokémon is now Poisoned.",
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."
},
damage: 60
}],
retreat: 1,
regulationMark: "G"
}
export default card