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

51
data-asia/SV/SV6/031.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ユキワラシ",
'zh-tw': "雪童子"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Mékayu",
dexId: [361],
hp: 60,
types: ["Water"],
description: {
ja: "ユキワラシが 訪れた 家は お金持ちに なると 言われている。 マイナス 100度でも へっちゃら。",
'zh-tw': "據說雪童子到訪過的家 將會變得富有。對牠來說 零下100度根本不算什麼。"
},
stage: "Basic",
attacks: [{
cost: ["Water", "Colorless"],
name: {
ja: "おどろかす",
'zh-tw': "驚嚇"
},
damage: 20,
effect: {
ja: "相手の手札からオモテを見ないで1枚選び、そのカードのオモテを見て、相手の山札にもどして切る。",
'zh-tw': "在不看正面的情況下從對手的手牌選擇1張查看那張卡的正面後放回對手的牌庫並重洗。"
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card