1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

21 lines
512 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../SVK"
const card: Card = {
set: Set,
name: {
ja: "ダブルターボエネルギー"
},
category: "Energy",
effect: {
ja: "このカードは、ポケモンについているかぎり、エネルギー2個ぶんとしてはたらく。\n\nこのカードをつけているポケモンが使うワザの、相手のポケモンへのダメージは「-20」される。"
},
energyType: "Special",
rarity: "None"
}
export default card