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

58
data-asia/S/S9a/018.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from "../../../interfaces"
import Set from "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "小山豬",
ja: "ウリムー"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
'zh-tw': "擅長靠氣味尋找埋藏於草叢或雪中的菇蕈。自古以來,洗翠的居民便 十分借重牠的此項天賦。",
ja: "草むら 雪に 埋もれし茸を 匂いにて 探す才に 長ず。 古より ヒスイの地 暮らす者 この才に 頼ること 多し。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "踩",
ja: "ふむ"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "冰凍之風",
ja: "こごえるかぜ"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。",
ja: "相手のバトルポケモンをねむりにする。"
},
damage: 40,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Common",
dexId: [220]
}
export default card