1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-12 00:41:58 +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

62
data-asia/S/S5R/019.ts Normal file
View File

@@ -0,0 +1,62 @@
import { Card } from "../../../interfaces"
import Set from "../S5R"
const card: Card = {
set: Set,
name: {
'zh-tw': "刺龍王",
th: "คิงดรา"
},
illustrator: "kawayoo",
category: "Pokemon",
hp: 150,
types: ["Water"],
description: {
'zh-tw': "據說牠會沉睡在任何生物都無法潛到的深海底部積蓄力量。",
th: "กล่าวกันว่ามันนอนหลับอยู่ใต้ท้องทะเลลึกที่สิ่งมีชีวิตแบบไหนก็ตามไม่สามารถลงไปได้ พลางเก็บสะสมพลังไปด้วย"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "海底霸主",
th: "จ้าวแห่งก้นทะเล"
},
effect: {
'zh-tw': "每次當自己的戰鬥寶可夢受到對手的寶可夢招式的傷害而【氣絕】時可使用1次。選擇【氣絕】的寶可夢身上附加的任意數量的【水】能量改附於這隻寶可夢身上。",
th: "ทุกครั้งที่โปเกมอนบนตำแหน่งต่อสู้ฝ่ายเราได้รับแดเมจจากท่าต่อสู้ของโปเกมอนฝ่ายตรงข้ามและ [หมดสภาพ] จะสามารถใช้ได้ 1 ครั้ง เลือกพลังงาน [น้ำ] ที่ติดกับโปเกมอนที่ [หมดสภาพ] ตามจำนวนที่ชอบ นำมาติดที่โปเกมอนนี้"
}
}],
attacks: [{
name: {
'zh-tw': "水暴流",
th: "อควาเบิร์ส"
},
effect: {
'zh-tw': "造成這隻寶可夢身上附加的【水】能量的數量×40點傷害。",
th: "แดเมจจะเท่ากับจำนวนพลังงาน [น้ำ] ที่ติดกับโปเกมอนนี้ x 40"
},
damage: "40×",
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card