mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +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
82 lines
1.7 KiB
TypeScript
82 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../SWSH Black Star Promos'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Hatenna",
|
||
fr: "Bibichut",
|
||
es: "Hatenna",
|
||
pt: "Hatenna",
|
||
de: "Brimova"
|
||
},
|
||
|
||
illustrator: "Misa Tsutsui",
|
||
rarity: "None",
|
||
category: "Pokemon",
|
||
hp: 60,
|
||
types: ["Psychic"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Find a Friend",
|
||
fr: "Trouver un Ami",
|
||
es: "Encontrar un Amigo",
|
||
pt: "Find a Friend",
|
||
de: "Freunde finden"
|
||
},
|
||
|
||
effect: {
|
||
en: "Search your deck for a Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||
fr: "Cherchez dans votre deck un Pokémon, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.",
|
||
es: "Busca en tu baraja 1 Pokémon, enséñalo y ponlo en tu mano. Después, baraja las cartas de tu baraja.",
|
||
pt: "Search your deck for a Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||
de: "Durchsuche dein Deck nach 1 Pokémon, zeige es deinem Gegner und nimm es auf deine Hand. Mische anschließend dein Deck."
|
||
},
|
||
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Psyshot",
|
||
fr: "Piqûre Psy",
|
||
es: "Disparo Psi",
|
||
pt: "Psyshot",
|
||
de: "Psychoschuss"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 1,
|
||
|
||
description: {
|
||
en: "Via the protrusion on its head, it senses other creatures' emotions. If you don't have a calm disposition, it will never warm up to you."
|
||
},
|
||
|
||
stage: "Basic",
|
||
dexId: [856],
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|