mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
* Updated Kalos Starter Set data Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed XY set Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed some more XY sets Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Some more fixes Signed-off-by: Avior <florian.bouillon@delta-wings.net> * More updated :D Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Finished update in English Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Updated XY datas Signed-off-by: Avior <florian.bouillon@delta-wings.net>
77 lines
1.1 KiB
TypeScript
77 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Phantom Forces'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Dedenne",
|
||
fr: "Dedenne",
|
||
},
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
702,
|
||
],
|
||
hp: 70,
|
||
types: [
|
||
"Fairy",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Nuzzle",
|
||
fr: "Frotte-Frimousse",
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.",
|
||
fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fairy",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Spiral Drain",
|
||
fr: "Spirale Épuisante",
|
||
},
|
||
effect: {
|
||
en: "Heal 20 damage from this Pokémon.",
|
||
fr: "Soignez 20 dégâts à ce Pokémon.",
|
||
},
|
||
damage: 60,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Metal",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Darkness",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|