1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

27 lines
930 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV7"
const card: Card = {
set: Set,
name: {
'zh-tw': "璀璨結晶",
'zh-cn': "璀璨結晶",
ja: "きらめく結晶"
},
illustrator: "Toyste Beach",
category: "Trainer",
effect: {
'zh-tw': "附有這張卡的「太晶」寶可夢使用招式時使用那個招式所需的能量減少1個。減少的能量任何屬性皆可。",
'zh-cn': "附有這張卡的「太晶」寶可夢使用招式時使用那個招式所需的能量減少1個。減少的能量任何屬性皆可。",
ja: "このカードをつけている「テラスタル」のポケモンがワザを使うとき、そのワザを使うためのエネルギーは、1個ぶん少なくなる。少なくなるのは、どのタイプのエネルギーでもよい。"
},
trainerType: "Tool",
regulationMark: "H",
rarity: "None"
}
export default card