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

59
data-asia/S/S12/063.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 喵喵",
th: "กาลาร์ เนียส",
ja: "ガラル ニャース"
},
illustrator: "miki kudo",
category: "Pokemon",
hp: 70,
types: ["Metal"],
description: {
'zh-tw': "和好戰的海洋民族一起生活,久而久之身體的各個地方 就都變成了黑鐵。",
th: "ถูกฝึกให้แข็งแกร่งในระหว่างที่อาศัยกับชนเผ่ามหาสมุทรผู้ก้าวร้าว หลายส่วนของร่างกายกลายเป็นเหล็กกล้า",
ja: "戦闘的な 海洋民族と 暮らすうちに 鍛えられ 体の あちこちが 黒鉄に 変化した。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "出爪",
th: "กางเล็บ",
ja: "ツメをだす"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則增加20點傷害。",
th: "ทอยเหรียญ 1 ครั้ง ถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 20",
ja: "コインを1回投げオモテなら、20ダメージ追加。"
},
damage: "10",
cost: ["Metal"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [52]
}
export default card