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

feat: Add SV10 (#747)

This commit is contained in:
2025-05-24 20:58:26 +02:00
committed by GitHub
parent 651313ce70
commit 25df3092d2
99 changed files with 5615 additions and 0 deletions

54
data-asia/SV/SV10/045.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SV10"
const card: Card = {
set: Set,
name: {
'zh-tw': "猴怪",
'zh-cn': "猴怪",
ja: "マンキー"
},
illustrator: "Ayako Ozaki",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
description: {
'zh-tw': "在樹上群居的寶可夢。 和夥伴走散的猴怪會因為 按捺不住寂寞而動不動就生氣。",
'zh-cn': "在樹上群居的寶可夢。 和夥伴走散的猴怪會因為 按捺不住寂寞而動不動就生氣。",
ja: "木の上で 群れをつくって 暮らす。 群れから はぐれた マンキーは 寂しくて すぐに 怒りだす。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "踹",
'zh-cn': "踹",
ja: "けりつける"
},
effect: {
'zh-tw': "擲1次硬幣若為反面則這個招式失敗。",
'zh-cn': "擲1次硬幣若為反面則這個招式失敗。",
ja: "コインを1回投げウラなら、このワザは失敗。"
},
damage: 30,
cost: ["Fighting"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "I",
rarity: "Common",
dexId: [56]
}
export default card