1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

52 lines
1.1 KiB
TypeScript
Raw Permalink 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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "オコリザル",
'zh-tw': "火爆猴",
id: "Primeape"
},
illustrator: "Scav",
category: "Pokemon",
dexId: [57],
hp: 90,
types: ["Fighting"],
description: {
ja: "ある研究者の 学説では モンスターボールの 中でも オコリザルは 怒っているらしい。",
'zh-tw': "某位研究者的學說中提到,即使在精靈球裡, 火爆猴好像也在發怒。",
id: "Menurut teori dari salah seorang peneliti, tampaknya Primeape juga mengamuk ketika berada di dalam Bola Pokémon."
},
stage: "Stage1",
attacks: [{
cost: ["Fighting"],
damage: 70,
effect: {
ja: "このポケモンにも20ダメージ。",
'zh-tw': "這隻寶可夢也受到20點傷害。",
id: "Pokémon ini juga menerima kerusakan sejumlah 20."
},
name: {
'zh-tw': "暴亂拳",
id: "Pukulan Mengamuk"
}
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card