mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
96 lines
1.8 KiB
TypeScript
96 lines
1.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Plasma Storm'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Crobat",
|
||
fr: "Nostenfer",
|
||
es: "Crobat",
|
||
it: "Crobat",
|
||
pt: "Crobat",
|
||
de: "Iksbat"
|
||
},
|
||
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
169,
|
||
],
|
||
|
||
hp: 130,
|
||
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Golbat",
|
||
fr: "Nosferalto",
|
||
},
|
||
|
||
stage: "Stage2",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Night Sight",
|
||
fr: "Vision de Nuit",
|
||
es: "Vista Nocturna",
|
||
it: "Vista Notturna",
|
||
pt: "Visão Noturna",
|
||
de: "Nachtblick"
|
||
},
|
||
effect: {
|
||
en: "Once during your turn (before your attack), you may draw a card.",
|
||
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez piocher une carte.",
|
||
es: "Una vez durante tu turno (antes de tu ataque), puedes robar una carta.",
|
||
it: "Una sola volta durante il tuo turno, prima di attaccare, puoi pescare una carta.",
|
||
pt: "Uma vez durante sua vez de jogar (antes de atacar), você pode comprar um card.",
|
||
de: "Einmal während deines Zuges (vor deinem Angriff) kannst du 1 Karte ziehen."
|
||
},
|
||
},
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Ultra-Toxic Fang",
|
||
fr: "Croc Ultratoxik",
|
||
},
|
||
effect: {
|
||
en: "The Defending Pokémon is now Poisoned. Put 4 damage counters instead of 1 on that Pokémon between turns.",
|
||
fr: "Le Pokémon Défenseur est maintenant Empoisonné. Placez 4 marqueurs de dégâts au lieu d'un sur le Pokémon ciblé entre chaque tour.",
|
||
},
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-20"
|
||
},
|
||
],
|
||
|
||
retreat: 0
|
||
}
|
||
|
||
export default card
|