1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Sword & Shield/Champion's Path/19.ts

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