mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
99 lines
2.3 KiB
TypeScript
99 lines
2.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Battle Styles'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Golbat",
|
||
fr: "Nosferalto",
|
||
es: "Golbat",
|
||
it: "Golbat",
|
||
pt: "Golbat",
|
||
de: "Golbat"
|
||
},
|
||
|
||
illustrator: "sui",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
hp: 80,
|
||
types: ["Darkness"],
|
||
|
||
evolveFrom: {
|
||
en: "Zubat",
|
||
fr: "Nosferapti",
|
||
es: "Zubat",
|
||
it: "Zubat",
|
||
pt: "Zubat",
|
||
de: "Zubat"
|
||
},
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
en: "Discreet Draw",
|
||
fr: "Pioche Discrète",
|
||
es: "Robo Discreto",
|
||
it: "Pesca Discreta",
|
||
pt: "Compra Discreta",
|
||
de: "Diskreter Zug"
|
||
},
|
||
|
||
effect: {
|
||
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may draw 2 cards.",
|
||
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon pendant votre tour, vous pouvez piocher 2 cartes.",
|
||
es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a 1 de tus Pokémon durante tu turno, puedes robar 2 cartas.",
|
||
it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon durante il tuo turno, puoi pescare due carte.",
|
||
pt: "Quando você jogar este Pokémon da sua mão para evoluir 1 dos seus Pokémon durante o seu turno, você poderá comprar 2 cartas.",
|
||
de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand spielst, um 1 deiner Pokémon zu entwickeln, kannst du 2 Karten ziehen."
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Air Slash",
|
||
fr: "Lame d'Air",
|
||
es: "Tajo Aéreo",
|
||
it: "Eterelama",
|
||
pt: "Golpe de Ar",
|
||
de: "Luftschnitt"
|
||
},
|
||
|
||
effect: {
|
||
en: "Discard an Energy from this Pokémon.",
|
||
fr: "Défaussez une Énergie de ce Pokémon.",
|
||
es: "Descarta 1 Energía de este Pokémon.",
|
||
it: "Scarta un'Energia da questo Pokémon.",
|
||
pt: "Descarte 1 Energia deste Pokémon.",
|
||
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
|
||
},
|
||
|
||
damage: 50,
|
||
cost: ["Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
description: {
|
||
en: "They can suck down over 10 ounces of blood in one go. They have been known to drink so much blood that they can no longer fly."
|
||
}
|
||
}
|
||
|
||
export default card
|