1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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/SV4M/015.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "ヒヤップ",
'zh-tw': "冷水猴",
th: "ฮิยัปปุ"
},
illustrator: "Natsumi Yoshida",
rarity: "Common",
category: "Pokemon",
dexId: [515],
hp: 70,
types: ["Water"],
description: {
ja: "頭の ふさに ためた 水は 栄養 たっぷり。 植物に かけると 大きく 育つのだ。",
'zh-tw': "頭上的毛髮叢裡儲藏的水充滿營養。如果拿來灌溉,植物就會茁壯成長。",
th: "น้ำที่สะสมไว้ในหงอนบนหัวเต็มเปี่ยมไปด้วยสารอาหาร เมื่อนำไปรดต้นไม้จะทำให้โตขึ้น"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "なかまをよぶ",
'zh-tw': "呼朋引伴",
th: "เรียกเพื่อน"
},
effect: {
ja: "自分の山札からたねポケモンを1枚選び、ベンチに出す。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。",
th: "เลือกการ์ดโปเกมอน[พื้นฐาน] 1 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด"
}
}, {
cost: ["Water", "Colorless", "Colorless"],
name: {
ja: "みずのはどう",
'zh-tw': "水之波動",
th: "คลื่นน้ำ"
},
damage: 30,
effect: {
ja: "相手のバトルポケモンをねむりにする。",
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card