1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-14 20:49:54 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

81 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Dedenne-GX",
},
illustrator: "PLANETA Igarashi",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
702,
],
hp: 160,
types: [
"Lightning",
],
suffix: "GX",
abilities: [
{
type: "Ability",
name: {
en: "Dedechange",
},
effect: {
en: "When you play this Pokémon from your hand onto your Bench during your turn, you may discard your hand and draw 6 cards. You can't use more than 1 Dedechange Ability each turn.",
},
},
],
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Static Shock",
},
damage: 50,
},
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Tingly Return-GX",
},
effect: {
en: "Your opponent's Active Pokémon is now Paralyzed. Put this Pokémon and all cards attached to it into your hand. (You can't use more than 1 GX attack in a game.)",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
}
export default card