1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 13:39:54 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

103 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Sun & Moon'
const card: Card = {
name: {
en: "Golbat",
fr: "Nosferalto",
es: "Golbat",
it: "Golbat",
pt: "Golbat",
de: "Golbat"
},
illustrator: "Masakazu Fukuda",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
42,
],
hp: 80,
types: [
"Psychic",
],
evolveFrom: {
en: "Zubat",
fr: "Nosferapti",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Super Poison Breath",
fr: "Super Haleine Empoisonnée",
es: "Aliento Supervenenoso",
it: "Super Velenospiro",
pt: "Super-hálito Venenoso",
de: "Super-Gifthauch"
},
effect: {
en: "Your opponents Active Pokémon is now Poisoned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
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."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Acrobatics",
fr: "Acrobatie",
es: "Acróbata",
it: "Acrobazia",
pt: "Acrobático",
de: "Akrobatik"
},
effect: {
en: "Flip 2 coins. This attack does 20 more damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts supplémentaires pour chaque côté face.",
es: "Lanza 2 monedas. Este ataque hace 20 puntos de daño más por cada cara.",
it: "Lancia due volte una moneta. Questo attacco infligge 20 danni in più ogni volta che esce testa.",
pt: "Jogue 2 moedas. Este ataque causa 20 pontos de dano a mais para cada cara.",
de: "Wirf 2 Münzen. Diese Attacke fügt 20 Schadenspunkte mehr pro Kopf zu."
},
damage: "10+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 0
}
export default card