1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +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

56
data-asia/S/S10a/036.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S10a"
const card: Card = {
set: Set,
name: {
'zh-tw': "怪力"
},
illustrator: "Nisota Niso",
category: "Pokemon",
hp: 150,
types: ["Fighting"],
description: {
'zh-tw': "能夠迅速活動4隻手臂,從各種角度毫不停歇地 使出拳擊或手刀。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "火場筋力"
},
effect: {
'zh-tw': "若對手剩餘獎賞卡的張數為3張以下則這隻寶可夢的最大HP增加「150」。"
}
}],
attacks: [{
name: {
'zh-tw': "剛腕金勾臂"
},
effect: {
'zh-tw': "若希望增加100點傷害。這個情況下在下個自己的回合這隻寶可夢無法使用招式。"
},
damage: "100+",
cost: ["Fighting", "Fighting"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card