mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
24 lines
791 B
TypeScript
24 lines
791 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S5I"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "活力之壺",
|
||
th: "ไหเปี่ยมพลัง"
|
||
},
|
||
|
||
illustrator: "Toyste Beach",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
'zh-tw': "從自己的棄牌區選擇最多2張「一擊能量」卡,在給對手看過後放回牌庫並重洗。",
|
||
th: "เลือกการ์ด [พลังงานจู่โจมครั้งเดียว] จากตำแหน่งทิ้งการ์ดฝ่ายเราได้สูงสุด 2 ใบ ให้ฝ่ายตรงข้ามดู ใส่กลับสำรับการ์ดแล้วสับ"
|
||
},
|
||
|
||
trainerType: "Item",
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |