1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

26 lines
1.1 KiB
TypeScript
Raw 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 "../SV9"
const card: Card = {
set: Set,
name: {
ja: "スパイクエネルギー",
'zh-tw': "扣殺能量",
'zh-cn': "扣殺能量"
},
rarity: "Uncommon",
category: "Energy",
effect: {
ja: "このカードは、ポケモンについているかぎり、エネルギー1個ぶんとしてはたらく。\n\nこのカードをつけているポケモンが、バトル場で相手のポケモンからワザのダメージを受けたとき、ワザを使ったポケモンにダメカンを2個のせる。",
'zh-tw': "只要這張卡附於寶可夢身上視為提供1個【無】能量。 附有這張卡的寶可夢在戰鬥場受到對手的寶可夢招式的傷害時在使用招式的寶可夢身上放置2個傷害指示物。",
'zh-cn': "只要這張卡附於寶可夢身上視為提供1個【無】能量。 附有這張卡的寶可夢在戰鬥場受到對手的寶可夢招式的傷害時在使用招式的寶可夢身上放置2個傷害指示物。"
},
energyType: "Special",
regulationMark: "I"
}
export default card