1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +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

62
data-asia/S/S12/019.ts Normal file
View File

@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "雪童子",
th: "ยูกิวาราชิ",
ja: "ユキワラシ"
},
illustrator: "sui",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
'zh-tw': "據說半夜出現的雪童子會帶來大雪。 靠吃雪和冰維生。",
th: "ว่ากันว่ายูกิวาราชิที่ปรากฏตัวในตอนกลางดึกจะทำให้หิมะตกหนัก มีชีวิตอยู่ได้ด้วยการกินหิมะหรือน้ำแข็งเป็นอาหาร",
ja: "真夜中 現れる ユキワラシは 大雪を 降らせると いわれる。 雪や 氷を 食べて 暮らす。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "呼喚",
th: "รวบรวม",
ja: "もってくる"
},
effect: {
'zh-tw': "從自己的牌庫抽出1張卡。",
th: "จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา",
ja: "自分の山札を1枚引く。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "雪花冰",
th: "สโนว์ไอซ์",
ja: "スノーアイス"
},
damage: 20,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [361]
}
export default card