1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

69 lines
899 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Great Encounters'
const card: Card = {
name: {
en: "Mankey",
fr: "Férosinge",
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
56,
],
hp: 50,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Light Punch",
fr: "Poing léger",
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Rage",
fr: "Frénésie",
},
effect: {
en: "Does 10 damage plus 10 more damage for each damage counter on Mankey.",
fr: "Inflige 10 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégât sur Férosinge.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Psychic",
value: "+10"
},
],
retreat: 1,
}
export default card