1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

101 lines
1.6 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 '../Unleashed'
const card: Card = {
name: {
en: "Crobat",
fr: "Nostenfer",
de: "Iksbat"
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
169,
],
hp: 110,
types: [
"Psychic",
],
evolveFrom: {
en: "Golbat",
fr: "Nosferalto",
},
stage: "Stage2",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Supersonic",
fr: "Ultrason",
de: "Superschall"
},
effect: {
en: "The Defending Pokémon is now Confused.",
fr: "Le Pokémon Défenseur est maintenant Confus.",
de: "Das Verteidigende Pokémon ist jetzt verwirrt."
},
damage: 30,
},
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Hurricane Wing",
fr: "Tornadaile",
de: "Hurrikanschwinge"
},
effect: {
en: "Flip 4 coins. This attack does 30 damage times the number of heads.",
fr: "Lancez 4 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.",
de: "Wirf 4 Münzen. Dieser Angriff fügt 30 Schadenspunkte mal der Anzahl \"Kopf\" zu."
},
damage: "30x",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 0,
description: {
en: "The development of wings on its legs enables it to fly fast but also makes it tough to stop and rest."
},
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card