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

63
data-asia/SV/SV3a/011.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "ヘイラッシャ",
'zh-tw': "吃吼霸",
th: "เฮรัชเชอร์"
},
illustrator: "Kouki Saitou",
rarity: "Uncommon",
category: "Pokemon",
dexId: [977],
hp: 160,
types: ["Water"],
description: {
ja: "大食らいだが エサを 取るのは 苦手。 シャリタツと コンビを 組んで 獲物を 捕らえるのだ。",
'zh-tw': "雖然是個大胃王,但不擅長捕食。 會和米立龍聯手捕捉獵物。",
th: "เป็นโปเกมอนที่ตะกละแต่กลับหาอาหารไม่เก่ง มักจับคู่กับชาริทัตสึเพื่อจับเหยื่อ"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "まるのみほきゅう",
'zh-tw': "大口吞補給",
th: "เขมือบเติมเต็ม"
},
effect: {
ja: "自分の山札を上から5枚見て、その中から基本エネルギーを好きなだけ選び、このポケモンにつける。残りのカードは山札にもどして切る。",
'zh-tw': "查看自己的牌庫上方5張卡從其中選擇任意數量的基本能量卡附於這隻寶可夢身上。將剩餘卡放回牌庫並重洗。",
th: "ดูการ์ด 5 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา เลือกการ์ดพลังงานพื้นฐานจากในนั้นตามจำนวนที่ชอบ ติดที่โปเกมอนนี้ การ์ดที่เหลือใส่กลับไปในสำรับการ์ดแล้วสับ"
}
}, {
cost: ["Water", "Colorless", "Colorless", "Colorless", "Colorless"],
name: {
ja: "ハイドロスプラッシュ",
'zh-tw': "水炮濺射",
th: "ไฮโดรสแปลช"
},
damage: 180
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 4,
regulationMark: "G"
}
export default card