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

68
data-asia/S/S12/064.ts Normal file
View File

@ -0,0 +1,68 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 喵頭目",
th: "กาลาร์ เนียคิง",
ja: "ガラル ニャイキング"
},
illustrator: "Teeziro",
category: "Pokemon",
hp: 120,
types: ["Metal"],
description: {
'zh-tw': "有著十分好戰的性格。頭上像鐵頭盔一樣的東西 其實是牠硬化後的體毛。",
th: "ขนบนศีรษะกลายสภาพแข็งราวกับหมวกกันน็อกเหล็ก มีนิสัยรักการต่อสู้มาก",
ja: "頭の 体毛が 硬質化して 鉄の ヘルメットのように なった。 とても 好戦的な 性質。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "銳利之爪",
th: "กรงเล็บคม",
ja: "するどいツメ"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則增加60點傷害。",
th: "ทอยเหรียญ 1 ครั้ง ถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 60",
ja: "コインを1回投げオモテなら、60ダメージ追加。"
},
damage: "30",
cost: ["Metal", "Colorless"]
}, {
name: {
'zh-tw': "劈開",
th: "ฟันแหลก",
ja: "きりさく"
},
damage: 90,
cost: ["Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 2,
regulationMark: "F",
rarity: "Uncommon",
dexId: [863]
}
export default card