mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-25 17:39:54 +00:00
27 lines
659 B
TypeScript
27 lines
659 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV9a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "シロナのパワーウエイト",
|
||
'zh-tw': "竹蘭的力量負重",
|
||
'zh-cn': "竹蘭的力量負重"
|
||
},
|
||
|
||
illustrator: "Studio Bora Inc.",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
ja: "このカードをつけている「シロナのポケモン」の最大HPは「+70」される。",
|
||
'zh-tw': "附有這張卡的「竹蘭的寶可夢」的最大HP「+70」。",
|
||
'zh-cn': "附有這張卡的「竹蘭的寶可夢」的最大HP「+70」。"
|
||
},
|
||
|
||
trainerType: "Tool",
|
||
regulationMark: "I"
|
||
}
|
||
|
||
export default card |