mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
27 lines
599 B
TypeScript
27 lines
599 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV8"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
ja: "シトロンの機転",
|
|
'zh-tw': "希特隆的機智",
|
|
'zh-cn': "希特隆的機智"
|
|
},
|
|
|
|
illustrator: "Naoki Saito",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
ja: "自分のポケモン全員のHPを、それぞれ「60」回復する。",
|
|
'zh-tw': "將自己的所有【雷】寶可夢各恢復「60」HP。",
|
|
'zh-cn': "將自己的所有【雷】寶可夢各恢復「60」HP。"
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "H"
|
|
}
|
|
|
|
export default card |