1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 11:51:59 +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

69
data-asia/SV/SV4K/001.ts Normal file
View File

@@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "ヤナップ",
'zh-tw': "花椰猴",
th: "ยานัปปุ"
},
illustrator: "Jerky",
rarity: "Common",
category: "Pokemon",
dexId: [511],
hp: 70,
types: ["Grass"],
description: {
ja: "木の実を 探すのが 上手で あちこちで 集めて 仲間に 分け与える 優しさを 持つ。",
'zh-tw': "擅長尋找樹果,有著四處收集樹果 與夥伴分享的體貼之心。",
th: "หาผลไม้เก่ง และมีนิสัยเอื้อเฟื้อเผื่อแผ่ขนาดที่หลังจากรวบรวมผลไม้จากที่ต่าง ๆ ได้ จะแบ่งให้กับพวกพ้องด้วย"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "なかまをよぶ",
'zh-tw': "呼朋引伴",
th: "เรียกเพื่อน"
},
effect: {
ja: "自分の山札からたねポケモンを1枚選び、ベンチに出す。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。",
th: "เลือกการ์ดโปเกมอน[พื้นฐาน] 1 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด"
}
}, {
cost: ["Grass", "Colorless", "Colorless"],
name: {
ja: "やどりぎのタネ",
'zh-tw': "寄生種子",
th: "เมล็ดกาฝาก"
},
damage: 30,
effect: {
ja: "このポケモンのHPを「10」回復する。",
'zh-tw': "將這隻寶可夢恢復「10」HP。",
th: "ฟื้นฟู HP ของโปเกมอนนี้ [10]"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card