1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

97 lines
1.2 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 '../Champion\'s Path'
const card: Card = {
name: {
en: "Hattrem",
fr: "Chapotus",
es: "Hattrem",
it: "Hattrem",
pt: "Hattrem",
de: "Brimano"
},
illustrator: "Hitoshi Ariga",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 90,
types: [
"Psychic",
],
evolveFrom: {
en: "Hatenna",
fr: "Bibichut"
},
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Beat",
fr: "Bataille",
es: "Toque",
it: "Battuta",
pt: "Pulso",
de: "Verprügler"
},
damage: 20,
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Super Psy Bolt",
fr: "Super Psy",
es: "Superrayo Psi",
it: "Superpsico",
pt: "Super-raio Psíquico",
de: "Super-Psischlag"
},
damage: 40,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
retreat: 2,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Stage1",
description: {
en: "No matter who you are, if you bring strong emotions near this Pokémon, it will silence you violently."
}
}
export default card