1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 22:32: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

77 lines
1.3 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 '../Rebel Clash'
const card: Card = {
name: {
en: "Unfezant",
fr: "Déflaisan"
},
illustrator: "Naoyo Kimura",
rarity: "Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Tranquill",
fr: "Colombeau"
},
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Daunt",
fr: "Découragement"
},
effect: {
en: "During your opponents next turn, the Defending Pokémons attacks do 50 less damage (before applying Weakness and Resistance).",
fr: "Pendant le prochain tour de votre adversaire, les attaques du Pokémon Défenseur infligent 50 dégâts de moins (avant application de la Faiblesse et de la Résistance)."
},
damage: 50,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Air Slash",
fr: "Lame dAir"
},
effect: {
en: "Discard an Energy from this Pokémon.",
fr: "Défaussez une Énergie de ce Pokémon."
},
damage: 150,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
retreat: 1,
hp: 150,
types: ["Colorless"],
regulationMark: "D"
}
export default card