1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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

119
cards/sm/sm6/134.ts Normal file
View File

@ -0,0 +1,119 @@
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: "sm6-134",
localId: 134,
// Card informations
name: {
en: "Naganadel-GX",
fr: "Mandrillon-GX",
},
hp: 210,
type: [
Type.PSYCHIC,
],
dexId: 804,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm6/134/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm6/134/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm6/134/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm6/134/high.png",
},
},
evolveFrom: {
en: "Poipole",
fr: "Vémini",
},
tags: [
Tag.GX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Beast Raid",
fr: "Raid Chimérique",
},
text: {
en: "This attack does 20 damage for each of your Ultra Beasts in play.",
fr: "Cette attaque inflige 20 dégâts pour chacune de vos Ultra-Chimères en jeu.",
},
damage: 20
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Jet Needle",
fr: "Gerbe dAiguilles",
},
text: {
en: "This attack's damage isn't affected by Weakness or Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse ou la Résistance.",
},
damage: 110
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Stinger-GX",
fr: "Aiguillon-GX",
},
text: {
en: "Both players shuffle their Prize cards into their decks. Then, each player puts the top 3 cards of their deck face down as their Prize cards. (You can't use more than 1 GX attack in a game.)",
fr: "Les deux joueurs mélangent leurs cartes Récompense avec leurs decks. Ensuite, chaque joueur place les 3 cartes du dessus de son deck, face cachée, comme cartes Récompense. (Vous ne pouvez utiliser quune attaque GX par partie.)",
},
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Forbidden Light",
code: "sm6"
}
}
export default card