1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

51
data-asia/S/S10b/026.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../S10b"
const card: Card = {
set: Set,
name: {
'zh-tw': "具甲武者"
},
illustrator: "otumami",
category: "Pokemon",
hp: 130,
types: ["Water"],
description: {
'zh-tw': "為了勝利不擇手段。會看準敵人疏忽的時機,用前腳上的小爪子解決對方。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "迎頭一擊"
},
effect: {
'zh-tw': "在這個回合若從備戰區將這隻寶可夢放置於戰鬥場則增加90點傷害。"
},
damage: "20+",
cost: ["Water"]
}, {
name: {
'zh-tw': "劈開"
},
damage: 100,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card