1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

112
cards/sm/sm10/195.ts Normal file
View File

@ -0,0 +1,112 @@
import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "sm10-195",
localId: 195,
// Card informations
name: {
en: "Dedenne-GX",
fr: "Dedenne-GX",
},
hp: 160,
type: [
Type.LIGHTNING,
],
dexId: 702,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm10/195/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm10/195/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm10/195/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm10/195/high.png",
},
},
evolveFrom: {},
tags: [
Tag.GX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
abilities: [{
id: 423,
type: AbilityType.TALENT,
name: {
en: "Dedechange",
fr: "Dedechange",
},
text: {
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.",
fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez défausser votre main et piocher 6 cartes. Vous ne pouvez pas utiliser plus dun talent Dedechange par tour.",
}
}],
attacks: [{
cost: [
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Static Shock",
fr: "Choc Statique",
},
damage: 50
},{
cost: [
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Tingly Return-GX",
fr: "Retour Picotant-GX",
},
text: {
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.)",
fr: "Le Pokémon Actif de votre adversaire est maintenant Paralysé. Placez ce Pokémon et toutes les cartes qui lui sont attachées dans votre main. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
damage: 50
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.METAL,
value: "-20"
}],
retreat: 1,
rarity: Rarity.RareUltra,
category: Category.POKEMON,
set: {
name: "Unbroken Bonds",
code: "sm10"
}
}
export default card