1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

84 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Chapotus",
en: "Hattrem",
es: "Hattrem",
it: "Hattrem",
pt: "Hattrem",
de: "Brimano"
},
illustrator: "Lee HyunJung",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
evolveFrom: {
fr: "Bibichut",
en: "Hatenna"
},
attacks: [{
name: {
fr: "Plénitude",
en: "Calm Mind",
es: "Paz Mental",
it: "Calmamente",
pt: "Mente Calma",
de: "Gedankengut"
},
effect: {
fr: "Soignez 30 dégâts de ce Pokémon.",
en: "Heal 30 damage from this Pokémon.",
es: "Cura 30 puntos de daño a este Pokémon.",
it: "Cura questo Pokémon da 30 danni.",
pt: "Cure 30 pontos de dano deste Pokémon.",
de: "Heile 30 Schadenspunkte bei diesem Pokémon."
},
cost: ["Colorless"]
}, {
name: {
fr: "Centrifugifle",
en: "Brutal Swing",
es: "Giro Vil",
it: "Vorticolpo",
pt: "Balanço Violento",
de: "Wirbler"
},
effect: {
fr: "Lancez une pièce. Si cest face, cette attaque inflige 30 dégâts supplémentaires.",
en: "Flip a coin. If heads, this attack does 30 more damage.",
es: "Lanza 1 moneda. Si sale cara, este ataque hace 30 puntos de daño más.",
it: "Lancia una moneta. Se esce testa, questo attacco infligge 30 danni in più.",
pt: "Jogue 1 moeda. Se sair cara, este ataque causará 30 pontos de dano a mais.",
de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 30 Schadenspunkte mehr zu."
},
damage: "30+",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card