1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +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

63
data-asia/S/S12/055.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨石丁",
th: "อิชิเฮนจิน",
ja: "イシヘンジン"
},
illustrator: "Hataya",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
description: {
'zh-tw': "佇立在大草原上,每天眺望著日升日落。 擅長強而有力的踢技。",
th: "ใช้ชีวิตด้วยการยืนในทุ่งหญ้ากว้างใหญ่ มองตะวันคล้อย ถนัดท่าต่อสู้เตะที่รุนแรง",
ja: "大草原の 中で たたずみ 陽の 傾きを 眺めて 暮らす。 ダイナミックな 蹴り技が 得意。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "落石",
th: "หินผาถล่ม",
ja: "いわおとし"
},
damage: 20,
cost: ["Fighting"]
}, {
name: {
'zh-tw': "神秘壓制",
th: "มิสเทรีเพรส",
ja: "ミステリープレス"
},
effect: {
'zh-tw': "若自己的棄牌區1張支援者卡都沒有則增加130點傷害。",
th: "ถ้าบนตำแหน่งทิ้งการ์ดฝ่ายเราไม่มีการ์ดซัพพอร์ตเลยแม้แต่ 1 ใบ การโจมตีนี้จะเพิ่มแดเมจอีก 130",
ja: "自分のトラッシュにサポートが1枚もないなら、130ダメージ追加。"
},
damage: "60",
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "F",
rarity: "Uncommon",
dexId: [874]
}
export default card