mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
21 lines
547 B
TypeScript
21 lines
547 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S6H"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "衝擊能量"
|
||
},
|
||
|
||
category: "Energy",
|
||
|
||
effect: {
|
||
'zh-tw': "這張卡只可附於「一擊」寶可夢身上,若附於「一擊」寶可夢以外的寶可夢身上,則將其丟棄。這張卡只要附於寶可夢身上,視為提供1個所有屬性的能量,附有這張卡的寶可夢不會【中毒】,受到的【中毒】會恢復。"
|
||
},
|
||
|
||
energyType: "Special",
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |