mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
24 lines
808 B
TypeScript
24 lines
808 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S5I"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "一擊的卷軸 憤怒之卷",
|
||
th: "ม้วนคัมภีร์จู่โจมครั้งเดียว ม้วนแห่งความโกรธเกรี้ยว"
|
||
},
|
||
|
||
illustrator: "5ban Graphics",
|
||
category: "Energy",
|
||
|
||
effect: {
|
||
'zh-tw': "寶可夢道具卡,附於自己的寶可夢使用。1隻寶可夢只可附上1張寶可夢道具卡,並且保持附加狀態。",
|
||
th: "การ์ดไอเท็มติดโปเกมอน ใช้ติดโปเกมอนฝ่ายเรา 1 ตัวติดได้ 1 ใบ และติดไปตลอด"
|
||
},
|
||
|
||
trainerType: "Tool",
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |