1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon ec1b6a06b0
Add regulation mark (#17)
* Added to interface

* Added Regulation mark to all current cards

* Ready for merge
2021-05-28 11:21:10 +02:00

24 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Single Strike Energy",
fr: "Énergie Poing Final"
},
rarity: "Uncommon",
category: "Energy",
effect: {
en: "This card can only be attached to a Single Strike Pokémon. If this card is attached to anything other than a Single Strike Pokémon, discard this card.\nAs long as this card is attached to a Pokémon, it provides Fighting and Darkness Energy but provides only 1 Energy at a time, and the attacks of the Pokémon this card is attached to do 20 more damage to your opponents Active Pokémon (before applying Weakness and Resistance).",
fr: "Cette carte ne peut être attachée quà un Pokémon Poing Final. Si cette carte est attachée à autre chose quun Pokémon Poing Final, défaussez-la.\nTant que cette carte est attachée à un Pokémon, elle fournit de lÉnergie Fighting et Darkness (mais seulement une Énergie à la fois), et les attaques du Pokémon auquel cette carte est attachée infligent 20 dégâts supplémentaires au Pokémon Actif de votre adversaire (avant application de la Faiblesse et de la Résistance)."
},
energyType: "Special",
regulationMark: "E"
}
export default card