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

70
data-asia/SV/SV1S/021.ts Normal file
View File

@ -0,0 +1,70 @@
import { Card } from "../../../interfaces"
import Set from "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "ヘイラッシャ",
'zh-tw': "吃吼霸",
th: "เฮรัชเชอร์",
id: "Dondozo"
},
illustrator: "Souichirou Gunjima",
rarity: "Rare",
category: "Pokemon",
dexId: [977],
hp: 160,
types: ["Water"],
description: {
ja: "大食らいだが エサを 取るのは 苦手。 シャリタツと コンビを 組んで 獲物を 捕らえるのだ。",
'zh-tw': "雖然是個大胃王,但不擅長捕食。 會和米立龍聯手捕捉獵物。",
th: "เป็นโปเกมอนที่ตะกละแต่กลับหาอาหารไม่เก่ง มักจับคู่กับชาริทัตสึเพื่อจับเหยื่อ",
id: "Meskipun rakus, Dondozo tidak pandai menangkap makanannya. Pokémon ini membentuk tim dengan Tatsugiri untuk berburu dan menangkap mangsa."
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "いかりちらす",
'zh-tw': "洩怒",
th: "กระจายความโกรธ",
id: "Kemarahan Menghambur"
},
damage: "50×",
effect: {
ja: "自分のトラッシュにある「シャリタツ」の枚数×50ダメージ。",
'zh-tw': "造成自己的棄牌區的「米立龍」的張數×50點傷害。",
th: "แดเมจจะเท่ากับจำนวนการ์ด [ชาริทัตสึ] ที่อยู่บนตำแหน่งทิ้งการ์ดฝ่ายเรา x50",
id: "Serangan ini memberikan kerusakan sejumlah 50 untuk tiap lembar Tatsugiri yang ada di Trash sendiri."
}
}, {
cost: ["Water", "Water", "Colorless", "Colorless"],
name: {
ja: "ヘビースプラッシュ",
'zh-tw': "重磅飛濺",
th: "เฮฟวีสแปลช",
id: "Heavy Splash"
},
damage: 120
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 4,
regulationMark: "G"
}
export default card