1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00

76 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 '../Forbidden Light'
const card: Card = {
name: {
en: "Dedenne",
fr: "Dedenne",
},
illustrator: "Tomokazu Komiya",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
702,
],
hp: 60,
types: [
"Fairy",
],
stage: "Basic",
attacks: [
{
cost: [
"Fairy",
],
name: {
en: "Find a Friend",
fr: "Trouver un Ami",
},
effect: {
en: "Search your deck for a Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.",
fr: "Cherchez un Pokémon dans votre deck, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Electrichain",
fr: "Électrichaîne",
},
effect: {
en: "If you have any Lightning Pokémon on your Bench, this attack does 30 more damage.",
fr: "Si vous avez un Pokémon Lightning sur votre Banc, cette attaque inflige 30 dégâts supplémentaires.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 1,
}
export default card