UNPKG

4.36 kBJavaScriptView Raw
1const Discord = require("discord.js");
2const gadgetImages = require("./files/gadgetImages.json")
3
4const randomImg = [
5 "https://cdn.discordapp.com/attachments/743696760358305883/761460406928670760/unknown.png",
6 "https://cdn.discordapp.com/attachments/743696760358305883/761466007097049128/unknown.png",
7 "https://cdn.discordapp.com/attachments/743696760358305883/761466108175581194/unknown.png",
8 "https://cdn.discordapp.com/attachments/743696760358305883/761469704657043456/photoshoppedTurret.png"
9 ];
10const gadgetThumbnail = randomImg[Math.floor(Math.random() * randomImg.length)];
11
12exports.gadgetmenu = {
13 embed: new Discord.MessageEmbed()
14 .setColor('#0099ff')
15 .setTitle('Gadgets')
16 .setThumbnail(`${gadgetThumbnail}`)
17 .setDescription('**Subcategories:** \n • Throwing, Tools, \n • Support(replaced by module combinations) \n\n Gadgets are in game objects that are used in Pixel Gun 3D. They are used to support players during gameplay, either used to deal damage or support players by healing, jetpack(flying), etc. ')
18 .addField('Gadgets can be obtained through:', '• The armory \n • Clan chests(by parts <:part:761465586210570240>)')
19 .setTimestamp()
20 .setFooter('Pixel Gun 3d Encyclopedia', 'https://cdn.discordapp.com/avatars/725848481239007353/67650468e3cde58188b66f64863b57af.png')
21}
22exports.ninjashurikens = {
23 embed: new Discord.MessageEmbed()
24 .setColor('#0099ff')
25 .setTitle('Ninja Shurikens')
26 .addField('General Information:', '**Category:** Throwing \n **Grade:** Epic \n **Effects:** Bleeding, Piercing Shot \n **Cost:** 115 <:gem:758633724245311488> \n **Introduced:** 11.3.0')
27 .addField('Other Information:', `**Initial Efficiency:** 20 \n **Max Efficiency:** 289 \n **Initial Cooldown:** 30 \n **Max Cooldown:** 20 \n **Level required:** Level 12`)
28 .setThumbnail('https://cdn.discordapp.com/attachments/743696760358305883/761460406928670760/unknown.png')
29 .setTimestamp()
30 .setFooter('Pixel Gun 3d Encyclopedia', 'https://cdn.discordapp.com/avatars/725848481239007353/67650468e3cde58188b66f64863b57af.png')
31}
32exports.rocketmech = {
33 embed: new Discord.MessageEmbed()
34 .setColor('#0099ff')
35 .setTitle('Rocket Mech')
36 .addField('General Information:', '**Category:** Tools \n **Grade:** Mythical \n **Effects:** Rockets, Area Damage \n **Cost:** 250 <:part:761465586210570240>(mythical) \n **Introduced:** 17.5.0')
37 .addField('Other Information:', `**Initial Efficiency:** 13 \n **Max Efficiency:** 366 \n **Initial Cooldown:** 45 \n **Max Cooldown:** 33 \n **Level required:** Level 6`)
38 .setThumbnail('https://cdn.discordapp.com/attachments/743696760358305883/761466007097049128/unknown.png')
39 .setTimestamp()
40 .setFooter('Pixel Gun 3d Encyclopedia', 'https://cdn.discordapp.com/avatars/725848481239007353/67650468e3cde58188b66f64863b57af.png')
41}
42exports.denied = {
43 embed: new Discord.MessageEmbed()
44 .setColor('#0099ff')
45 .setTitle('Denied')
46 .addField('General Information:', '**Category:** Tools \n **Grade:** Mythical \n **Effects:** Enemy Kill Cancellation \n **Cost:** 250 <:part:761465586210570240>(mythical) \n **Introduced:** 17.5.0')
47 .addField('Other Information:', `**Initial Efficiency:** 13 \n **Max Efficiency:** 366 \n **Initial Cooldown:** 55 \n **Max Cooldown:** 43 \n **Level required:** Level 6`)
48 .setThumbnail('https://cdn.discordapp.com/attachments/743696760358305883/761466108175581194/unknown.png')
49 .setTimestamp()
50 .setFooter('Pixel Gun 3d Encyclopedia', 'https://cdn.discordapp.com/avatars/725848481239007353/67650468e3cde58188b66f64863b57af.png')
51}
52exports.stickyturret = {
53 embed: new Discord.MessageEmbed()
54 .setColor('#0099ff')
55 .setTitle('Sticky Turret')
56 .addField('General Information:', '**Category:** Tools \n **Grade:** Mythical \n **Effects:** Stickey Mines, Laser \n **Cost:** 250 <:part:761465586210570240>(mythical) \n **Introduced:** 17.5.0')
57 .addField('Other Information:', `**Initial Efficiency:** 13 \n **Max Efficiency:** 366 \n **Initial Duration:** 15 \n **Max Duration:** 27 \n **Initial Cooldown:** 35 \n **Max Cooldown:** 22 \n **Level required:** Level 6`)
58 .setThumbnail('https://cdn.discordapp.com/attachments/743696760358305883/761469704657043456/photoshoppedTurret.png')
59 .setTimestamp()
60 .setFooter('Pixel Gun 3d Encyclopedia', 'https://cdn.discordapp.com/avatars/725848481239007353/67650468e3cde58188b66f64863b57af.png')
61}