1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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/021.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: "Taira Akitsu",
category: "Pokemon",
hp: 90,
types: ["Water"],
description: {
'zh-tw': "在雪山中遇難的女性的遺恨讓這隻寶可夢誕生。 牠最喜歡凍成冰的靈魂。",
th: "โปเกมอนที่เกิดมาจากความเจ็บแค้นของหญิงสาวที่เสียชีวิตบนภูเขาหิมะ ชอบกินวิญญาณที่ถูกแช่แข็ง",
ja: "雪山で 亡くなった 女の 無念から 生まれた ポケモン。 凍らせた 魂が 好物。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "雪之牢獄",
th: "เรือนจำหิมะ",
ja: "ゆきのろうごく"
},
effect: {
'zh-tw': "在這個回合若從手牌使出了「小菘」則增加90點傷害並將對手的戰鬥寶可夢【麻痺】。",
th: "เทิร์นนี้ ถ้านำการ์ด [ซุซุนะ] จากบนมือออกมาใช้แล้ว การโจมตีนี้จะเพิ่มแดเมจอีก 90 และทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา]",
ja: "この番、手札から「スズナ」を出して使っていたなら、90ダメージ追加し、相手のバトルポケモンをマヒにする。"
},
damage: "20",
cost: ["Water"]
}, {
name: {
'zh-tw': "冰息",
th: "ลมหายใจเยือกแข็ง",
ja: "こおりのいぶき"
},
damage: 60,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Uncommon",
dexId: [478]
}
export default card