1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 07:32:11 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

83 lines
1.5 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 '../Steam Siege'
const card: Card = {
name: {
en: "Mankey",
fr: "Férosinge",
es: "Mankey",
it: "Mankey",
pt: "Mankey",
de: "Menki"
},
illustrator: "Hitoshi Ariga",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
56,
],
hp: 60,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Focus Energy",
fr: "Puissance",
es: "Foco Energía",
it: "Focalenergia",
pt: "Focalizar Energia",
de: "Energiefokus"
},
effect: {
en: "During your next turn, this Pokémons Flop attacks base damage is 50.",
fr: "Pendant votre prochain tour, les dégâts de base de lattaque Flop de ce Pokémon sont de 50.",
es: "Durante tu próximo turno, el daño básico del ataque Vuelta de este Pokémon es de 50.",
it: "Durante il tuo prossimo turno, i danni base dellattacco Tonfo di questo Pokémon sono 50.",
pt: "Durante sua próxima vez de jogar, o dano base do ataque Baque deste Pokémon será 50.",
de: "Während deines nächsten Zuges beträgt der Grundschaden der Attacke Plumps dieses Pokémon 50 Schadenspunkte."
},
},
{
cost: [
"Fighting",
],
name: {
en: "Flop",
fr: "Flop",
es: "Vuelta",
it: "Tonfo",
pt: "Baque",
de: "Plumps"
},
damage: 10,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card