mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
24 lines
802 B
TypeScript
24 lines
802 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S5I"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "芙蓉",
|
||
th: "ฟุโย"
|
||
},
|
||
|
||
illustrator: "GAME FREAK inc.",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
'zh-tw': "在這個回合,自己的「寶可夢【VMAX】」使用招式的傷害,不計算對手的戰鬥寶可夢身上的附加效果。",
|
||
th: "เทิร์นนี้ ไม่นำเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมาคำนวณแดเมจท่าต่อสู้ที่ [โปเกมอน【VMAX】] ฝ่ายเราใช้"
|
||
},
|
||
|
||
trainerType: "Supporter",
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |