mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
60
data/Sun & Moon/Unified Minds/145.ts
Normal file
60
data/Sun & Moon/Unified Minds/145.ts
Normal file
@ -0,0 +1,60 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Unified Minds'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Dedenne",
|
||||
fr: "Dedenne",
|
||||
},
|
||||
illustrator: "Saya Tsuruta",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
702,
|
||||
],
|
||||
hp: 70,
|
||||
types: [
|
||||
"Fairy",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Return",
|
||||
fr: "Retour",
|
||||
},
|
||||
effect: {
|
||||
en: "You may draw cards until you have 6 cards in your hand.",
|
||||
fr: "Vous pouvez piocher des cartes jusqu’à ce que vous ayez 6 cartes en main.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Darkness",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user