1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

52
data-asia/SV/SV4a/277.ts Normal file
View File

@ -0,0 +1,52 @@
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