1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-23 04:19:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,79 @@
import { Card } from '../../../interfaces'
import Set from '../Emerging Powers'
const card: Card = {
name: {
en: "Unfezant",
fr: "Déflaisan",
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
521,
],
hp: 120,
types: [
"Colorless",
],
evolveFrom: {
en: "Tranquill",
fr: "Colombeau",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tailwind",
fr: "Vent Arrière",
},
effect: {
en: "Attach an Energy card from your hand to 1 of your Pokémon.",
fr: "Attachez une carte Énergie de votre main à 1 de vos Pokémon.",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Feather Strike",
fr: "Tir de Plumes",
},
effect: {
en: "Flip a coin. If heads, this attack does 40 more damage. If tails, discard an Energy attached to the Defending Pokémon.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts supplémentaires. Si c'est pile, défaussez une Énergie attachée au Pokémon Défenseur.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-20"
},
],
}
export default card