1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

55 lines
1.1 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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "マンキー",
'zh-tw': "猴怪",
'zh-cn': "猴怪"
},
illustrator: "Apios",
rarity: "Common",
category: "Pokemon",
dexId: [56],
hp: 60,
types: ["Fighting"],
description: {
ja: "普段は 機嫌が 良くても ちょっとしたことで いきなり 暴れだすから 怖いのだ。",
'zh-tw': "平時就算心情再怎麼好, 也會因為一點芝麻小事 而突然暴怒,令人害怕。",
'zh-cn': "平時就算心情再怎麼好, 也會因為一點芝麻小事 而突然暴怒,令人害怕。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ダブルチョップ",
'zh-tw': "二連劈",
'zh-cn': "二連劈"
},
damage: "10×",
effect: {
ja: "コインを2回投げ、オモテの数×10ダメージ。",
'zh-tw': "擲2次硬幣造成正面出現的次數×10點傷害。",
'zh-cn': "擲2次硬幣造成正面出現的次數×10點傷害。"
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card