Modding:Custom Weapons
| |
Article Stub
This article is a stub. You can help Starbound's official Wiki by expanding it! |
Custom Weapons
Due to Starbound's fully randomized loot tables, we can use chat commands to build, customize, and create weapons that fit into this current scheme, allowing you to essentially create any and every possible combination of visual appearance, abilities, damage, and speed values. It is highly recommended to unpack or otherwise view the .../StarBound/assets/packed.pack file to get a look at some of these commands in context, as most of them are simply commands used in .activeitem and .animation files. Learning how the game treats existing items can be helpful in constructing new ones.
The spawn item command lays out some parameters used, with commands from .activeitem files, entirely new weapons can be created without modifying the games files. It is advisable to 'build' your command in an advanced text editor like Notepad++.
JSON Commands
| Desired Change | Syntax | Function | Example | Notes |
|---|---|---|---|---|
| Item Name | "shortdescription":"item name" | Changes the item's name. | '{"shortdescription":"The Best Sword In The World"}' | |
| Description | "description":"item description" | Changes the item's description (flavor text/lore). | '{"description":"This is quite a good sword."}' | Will not work on everything |
| Rarity | "rarity":"some kind of rarity" | Changes the item's rarity. | '{"rarity":"Legendary"}' | |
| Level | "level":(tier level) | Changes the item's tier level. | '{"level":6}' | |
| Elemental Type | "elementalType":"ice,fire,poison,electric" | Changes the item's element. | '{"elementalType":"electric"}' | |
| Seed | "seed":(number) | Makes the item you spawn in have a specific seed. | '{"seed":237}' | |
| Animation | "animation":"animationfile.animation" | Allows manual assignment of animation file. (Used to create moving parts, holding style etc.) | "animation":"broadsword.animation" | Animation tells the game how to construct the item, and what should move when shot etc. |
| Visual Appearance/Sprite (Animation Parts) | "animationParts":{"part":"part.png", "part2":"part2.png"} | Assigns an image for a piece specified by the animation file. | "animationParts":{"handle":"10.png", "blade":"14.png"} | The actual image file(s) for the item |
| Replacing Colors | part.png?replace;hexcode=newhexcode;hexcode2=newhexcode2 | Replaces a specific hex-color with another one provided. | "animationParts":{"handle":"10.png?replace;FFFFF=0F0F0F", "blade":"14.png?replace;F78896=33F449"} | Can be added to almost any image file referenced via this command |
| Custom Projectile Type | "projectileType":"projectile-name" | If the weapon uses a projectile, it will be replaced with the given type. | "projectileType:"homingrocket" | |
| Custom Projectile Stats | "projectileParameters":{"parameter1":value1, "parameter2:value2} | Uses JSON parameters to define specifics for projectiles, including speed, knockback, etc. | "projectileParameters":{"power":10.5, "speed":90, "knockback":2} |
Examples
From ThatThunderCookie's Youtube channel
(may be slightly changed)
Spear of Flight
/spawnitem rarespear 1 '{"shortdescription":"Flight Spear","description":"Better then a Hoverbike!","rarity":"Legendary","elementalType":"fire","primaryAbility": {"fireTime":1.50,"baseDps":5.5,"knockback":100},"altAbilityType":"rocketspear","altAbility":{"baseDps":0,"cooldownTime":0.1,"energyUsage":0,"inaccuracy":0.25,"boostForce":-250,"projectileParameters": {"speed":10}},"tooltipKind":"base"}'
(a modification of above spear of flight which feels more convenient to me, -force is finicky when pointing downwards)
/spawnitem rarespear 1 '{"shortdescription":"Flight Spear","description":"Better then a Hoverbike!","rarity":"Legendary","elementalType":"fire","primaryAbility": {"fireTime":1.50,"baseDps":5.5,"knockback":100},"altAbilityType":"rocketspear","altAbility":{"baseDps":0,"cooldownTime":0.1,"energyUsage":0,"inaccuracy":0.25,"boostForce":250,"projectileParameters": {"speed":10}},"tooltipKind":"base"}'
Ion Laser Rifle (kinda shoots through walls)
/spawnitem npcassaultrifle 1 '{"shortdescription":"Ion Laser Rifle","level":6,"seed":237,"primaryAbility":{"projectileType":"shortbeam","baseDps":30,"inaccuracy":0,"energyUsage":30,"projectileParameters":{"speed":200,"power":15.5,"knockback":10}},"rarity":"legendary"}'
Gravity Cannon (A.K.A a rocket launcher that allows you to rocket jump which is amazing for becoming a guided missile in Zero-G}
/spawnitem rarerocketlauncher 1 '{"seed":666,"level":10,"shortdescription":"Gravity Cannon","rarity":"legendary","altAbility":{"fireTime":1.0,"energyUsage":0,"projectileCount":5,"inaccuracy":0.1,"baseDps":30,"projectileType":"ngravityexplosion"}}'
Shadow Aura Gear
/spawnitem aviantier6mchest 1 '{"shortdescription":"Shadow Aura Gear","description":"Let the shadows take you.","statusEffects":["runboost","minibossglow","jumpboost","nude","beamin","rage"],"level":10}'
Hover Pants (use with Flight Spear)
/spawnitem aviantier6mpants 1 '{"shortdescription":"Hover Pants","description":"Whee! This is so fun.","statusEffects":["runboost","lowgrav","levitation"]}'
(another modification which feels better to me, no fall damage lets you thrust downward at a not painfully slow speed while preveting you from splattering yourself)
/spawnitem aviantier6mpants 1 '{"shortdescription":"Hover Pants","description":"Whee! This is so fun.","statusEffects":["runboost","lowgrav","nofalldamage"]}'
Phase Fist (goes through walls}
/spawnitem rareshotgun 1 '{"shortdescription":"Phase Fist","level":6,"seed":491,"primaryAbility":{"projectileType":"energyfist","baseDps":30,"cooldownTime":0.3,"inaccuracy":0,"projectileParameters":{"speed":70,"power":15.5,"knockback":10}},"altAbility":{"projectileType":"energyfist","baseDps":30,"cooldownTime":0.3,"inaccuracy":0,"projectileParameters":{"speed":70,"power":15.5,"knockback":10}},"rarity":"legendary"}'
Static Defender
/spawnitem rarestaff 1 '{"level":10,"primaryAbilityType":"electric","altAbilityType":"elementswarm","primaryAbility":{"projectileType":"staticdischarge","projectileCount":1,"maxCastRange":1000,"projectileDistance":0,"projectileParameters":{"timeToLive":1}},"altAbility":{"projectileType":"electricbarrier","projectileCount":60,"maxCastRange":20,"projectileDistance":10,"projectileParameters":{"timeToLive":10}},"elementalType":"electric","rarity":"legendary","shortdescription":"Static Defender","seed":20}'
User-Created Examples
These are creations created by the members of this wiki. If you add something, please sign it by using ~ 4 times in a row.
Ion Sniper
/spawnitem raresniperrifle 1 '{"shortdescription":"Ion Sniper","level":6,"seed":237,"primaryAbilityType":"electric","primaryAbility":{"projectileType":"shortbeam","baseDps":40,"projectileParameters":{"speed":200}},"altAbility":{"projectileType":"shortbeam","baseDps":100,"inaccuracy":0,"projectileParameters":{"speed":300,"power":15.5,"knockback":10}},"rarity":"legendary"}'
Echo (talk) 00:08, 21 December 2016 (UTC)
Meteorite Gun
/spawnitem npcrocketlauncher 1 '{"shortdescription":"Meterorite Gun","level":6,"seed":491,"primaryAbility":{"projectileType":"largemeteor","baseDps":10,"cooldownTime":0.3,"inaccuracy":0,"projectileParameters":{"speed":70,"power":15.5,"knockback":10}},"rarity":"legendary"}'
Echo (talk) 00:08, 21 December 2016 (UTC)
Meteorite Rifle
/spawnitem rareassaultrifle 1 '{"shortdescription":"Meterorite Rifle","level":6,"seed":491,"primaryAbility":{"projectileType":"smallmeteor","baseDps":40,"cooldownTime":0.3,"inaccuracy":0,"projectileParameters":{"speed":70,"power":15.5,"knockback":10}}"altAbility":{"fireTime":1.0,"projectileCount":5,"inaccuracy":0.1,"baseDps":100,"projectileType":"ngravityexplosion"}}
,"rarity":"legendary"}'
Echo (talk) 00:08, 21 December 2016 (UTC)
Homing Arrow Gun (very buggy!)
/spawnitem npcassaultrifle 1 '{"shortdescription":"Arrow Gun","level":6,"seed":237,"primaryAbility":{"projectileType":"homingarrow","baseDps":100,"projectileCount":5,"inaccuracy":0.1,"energyUsage":30,"projectileParameters":{"speed":200,"power":15.5,"knockback":10}},"rarity":"legendary"}'
Echo (talk) 00:08, 21 December 2016 (UTC)
Ion Sword (shoots ion blasts)
/spawnitem rarebroadsword 1 '{"shortdescription":"Ion Sword","level":6,"seed":550,"primaryAbility":{"baseDps":40},"altAbility":{"projectileType":"shortbeam","baseDps":100,"inaccuracy":0,"projectileParameters":{"speed":200,"power":15.5,"knockback":10}}}'
Echo (talk) 00:08, 21 December 2016 (UTC)
Glitched Gun
/spawnitem rareassaultrifle 1 '{"shortdescription":"Glitched Gun","level":6,"seed":491,"primaryAbility":{"projectileType":"rainbow","baseDps":10,"cooldownTime":0.3,"inaccuracy":0,"projectileParameters:{"speed":70}},"altAbilityType":"adaptableammo","rarity":"legendary"}'
Echo (talk) 07:36, 21 December 2016 (UTC)
Staff of insanity
/spawnitem feroziumstaff 1 '{"itemName":"Mega staff","description":"This powerful staff was made by the ancients. I wonder what power it could hold?.","shortdescription":"Mega staff","stances":{"idle":{"armRotation":-90,"weaponRotation":0,"twoHanded":false,"allowRotate":false,"allowFlip":true},"charge":{"duration":0.5,"armRotation":20,"weaponRotation":-20,"twoHanded":true,"allowRotate":false,"allowFlip":true},"charged":{"armRotation":20,"weaponRotation":-20,"twoHanded":true,"allowRotate":false,"allowFlip":true},"discharge":{"duration":0.5,"armRotation":-10,"weaponRotation":-50,"twoHanded":true,"allowRotate":true,"allowFlip":true},"cooldown":{"duration":0.5,"armRotation":-45,"weaponRotation":0,"twoHanded":true,"allowRotate":false,"allowFlip":true}},"primaryAbilityType":"chaosarrow","altAbilityType":"
Golden Gun
/spawnitem titaniummachinepistol 1 '{"shortdescription":"Golden Gun","level":10,"primaryAbility":{"baseDps":100000},"rarity":"legendary"}'
Sinaro II (talk) 23:35, 5 May 2017 (BST) Sinaro 2
Energy Javelin Launcher
/spawnitem raregrenadelauncher 2 '{"seed":35,"shortdescription":"Energy Javelin Launcher ^yellow;","level":3,"elementalType":"fire","primaryAbility":{"projectileType":"energyjavelin","energyUsage":10,"baseDps":20,"knockback":10,"rateOfFire":1},"category":"Javelin Launcher","rarity":"essential"}'
By Tagir, August 23 2018
Wormrang gun
/spawnitem snowgun 1 '{"level":10,"periodicActions":[{"time":0.02,"action":"projectile","type":"wormtrail","fuzzAngle":0}],"damagePoly":[[-8,4],[-4,8],[4,8],[8,4],[8,-4],[4,-8],[-4,-8],[-8,-4]],"power":5.0,"speed":30,"damageKind":"poisonspear","physics":"laser","bounces":-1,"piercing":true,"timeToLive":8,"persistentAudio":"/sfx/melee/spear_twirl_loop.ogg",\"scripts":["/scripts/projectiles/boomerangprojectile.lua","wormerangprojectile.lua"]}'
By an unknown human on the Internet, 2019
(In the most recent version of the game, this item will crash the game if you interact with it in your inventory, which means you will not be able to get rid of it unless you directly edit your character's inventory from the game's save file or restore a backup save. This could also be the case for any of the other items on this list, but this is just the one I found. Please be careful and always back up your saves before experimenting with modded weapons.)
Lavaball Cannon 2.0
/spawnitem snowgun 1 '{"itemName" : "snowgun","price" : 50000,"inventoryIcon" : "snowgun.png?setcolor=fff?replace;fff0=fff?scalenearest=1?crop=0;0;36;17?blendmult=/objects/outpost/customsign/signplaceholder.png;0;0?replace;01000401=1F1F1F;01000501=1F1F1F;01000601=1F1F1F;01000701=1F1F1F;01000801=1F1F1F;02000301=1F1F1F;02000401=343434;02000501=4A4A4A;02000601=4A4A4A;02000701=4A4A4A;02000801=4A4A4A;03000201=1F1F1F;03000301=343434;03000401=4A4A4A;03000501=FF6E0B;03000601=FFA711;03000701=FF6E0B;03000801=FFA711;04000101=1F1F1F;04000201=343434;04000301=4A4A4A;04000401=FF6E0B;04000501=FF6E0B;04000601=FF6E0B;04000701=FFA711;04000801=FFA711;05000101=1F1F1F;05000201=4A4A4A;05000301=FF6E0B;05000401=FFA711;05000501=FF6E0B;05000601=FFA711;05000701=FFFF48;05000801=FEFEFE;06000101=1F1F1F;06000201=4A4A4A;06000301=FF6E0B;06000401=FF6E0B;06000501=FFA711;06000601=FFFF48;06000701=FEFEFE;06000801=FFFF48;07000101=1F1F1F;07000201=4A4A4A;07000301=FF6E0B;07000401=FFA711;07000501=FFFF48;07000601=FFFF48;07000701=FFFF48;07000801=FEFEFE;08000101=1F1F1F;08000201=4A4A4A;08000301=FF6E0B;08000401=FF6E0B;08000501=FFA711;08000601=FFFF48;08000701=FEFEFE;08000801=FEFEFE;09000101=1F1F1F;09000201=4A4A4A;09000301=FF6E0B;09000401=FF6E0B;09000501=FFFF48;09000601=FFFF48;09000701=FFFF48;09000801=FEFEFE;10000101=1F1F1F;10000201=4A4A4A;10000301=FF6E0B;10000401=FF6E0B;10000501=FFA711;10000601=FFFF48;10000701=FEFEFE;10000801=FEFEFE;11000101=1F1F1F;11000201=343434;11000301=4A4A4A;11000401=FFA711;11000501=FF6E0B;11000601=FFA711;11000701=FFFF48;11000801=FEFEFE;12000201=1F1F1F;12000301=343434;12000401=4A4A4A;12000501=FFA711;12000601=FF6E0B;12000701=FFA711;12000801=FFA711;13000301=1F1F1F;13000401=343434;13000501=343434;13000601=343434;13000701=343434;13000801=343434;14000401=343434;14000501=343434;14000601=343434;14000701=343434;14000801=4A4A4A;15000401=1F1F1F;15000501=1F1F1F;15000601=1F1F1F;15000701=1F1F1F;15000801=1F1F1F;16000401=343434;16000501=343434;16000601=343434;16000701=343434;16000801=343434;17000401=1F1F1F;17000501=1F1F1F;17000601=1F1F1F;17000701=1F1F1F;17000801=1F1F1F;18000501=1F1F1F;18000601=1F1F1F;18000701=343434;18000801=343434;19000501=1F1F1F;19000601=1F1F1F;19000701=343434;19000801=4A4A4A;20000301=1F1F1F;20000401=1F1F1F;20000501=1F1F1F;20000601=1F1F1F;20000701=343434;20000801=4A4A4A;21000201=1F1F1F;21000301=FFA711;21000401=FFA711;21000501=1F1F1F;21000601=1F1F1F;21000701=343434;21000801=4A4A4A;22000201=1F1F1F;22000301=FF6E0B;22000501=1F1F1F;22000601=1F1F1F;22000701=343434;22000801=4A4A4A;23000201=1F1F1F;23000301=1F1F1F;23000401=1F1F1F;23000501=1F1F1F;23000601=1F1F1F;23000701=242424;23000801=292929;24000301=FF6E0B;24000401=FF6E0B;24000501=C75A0F;24000601=C75A0F;24000701=CC5F15;24000801=D2901F;25000501=1F1F1F;25000601=1F1F1F;25000701=343434;25000801=4A4A4A;26000301=1F1F1F;26000401=1F1F1F;26000501=1F1F1F;26000601=1F1F1F;26000701=343434;26000801=4A4A4A;27000201=1F1F1F;27000301=FFA711;27000401=FFA711;27000501=1F1F1F;27000601=1F1F1F;27000701=343434;27000801=4A4A4A;28000201=1F1F1F;28000301=FF6E0B;28000501=1F1F1F;28000601=1F1F1F;28000701=343434;28000801=4A4A4A;29000201=1F1F1F;29000301=1F1F1F;29000401=1F1F1F;29000501=1F1F1F;29000601=1F1F1F;29000701=242424;29000801=4A4A4A;30000301=FF6E0B;30000401=FF6E0B;30000501=C75A0F;30000601=C75A0F;30000701=CC5F15;30000801=292929;31000501=1F1F1F;31000601=343434;31000701=343434;31000801=D2651A;32000501=1F1F1F;32000601=1F1F1F;32000701=343434;32000801=D2901F?fade;80ff80;0.0001518?blendmult=/objects/outpost/customsign/signplaceholder.png;0;-8?replace;01000101=1F1F1F;01000201=1F1F1F;02000101=4A4A4A;02000201=343434;02000301=1F1F1F;03000101=FF6E0B;03000201=4A4A4A;03000301=343434;03000401=1F1F1F;04000101=FFA711;04000201=FF6E0B;04000301=4A4A4A;04000401=343434;04000501=1F1F1F;05000101=FFFF48;05000201=FFA711;05000301=FF6E0B;05000401=4A4A4A;05000501=343434;06000101=FEFEFE;06000201=FFFF48;06000301=FFA711;06000401=4A4A4A;06000501=343434;06000601=4A4A4A;07000101=FEFEFE;07000201=FEFEFE;07000301=FFA711;07000401=4A4A4A;07000501=343434;07000601=343434;07000701=FF6E0B;07000801=FF6E0B;08000101=FEFEFE;08000201=FFFF48;08000301=FFA711;08000401=4A4A4A;08000501=343434;08000601=1F1F1F;08000701=FFA711;08000801=1F1F1F;09000101=FFFF48;09000201=FEFEFE;09000301=FFA711;09000401=4A4A4A;09000501=343434;09000601=343434;09000801=1F1F1F;10000101=FEFEFE;10000201=FFFF48;10000301=FFA711;10000401=4A4A4A;10000501=343434;10000801=1F1F1F;11000101=FFFF48;11000201=FFA711;11000301=343434;11000401=4A4A4A;11000501=343434;11000801=1F1F1F;12000101=FFA711;12000201=343434;12000301=4A4A4A;12000401=343434;12000801=1F1F1F;13000101=343434;13000201=4A4A4A;13000301=343434;13000801=1F1F1F;14000101=4A4A4A;14000201=343434;14000701=1F1F1F;14000801=FF6E0B;15000101=1F1F1F;15000201=1F1F1F;15000601=1F1F1F;15000701=FF6E0B;15000801=FFA711;16000101=4A4A4A;16000201=4A4A4A;16000501=1F1F1F;16000601=343434;16000701=1F1F1F;17000101=1F1F1F;17000201=1F1F1F;17000401=1F1F1F;17000501=1F1F1F;17000601=343434;17000701=1F1F1F;18000101=1F1F1F;18000301=1F1F1F;18000401=FF6E0B;18000501=1F1F1F;18000601=4A4A4A;18000701=1F1F1F;19000101=1F1F1F;19000201=1F1F1F;19000301=FF6E0B;19000401=FFA711;19000601=252525;20000101=1F1F1F;20000201=FF6E0B;20000301=FFA711;20000501=7F0000;20000601=F00;20000701=FF4949;21000101=1F1F1F;21000201=FFA711;22000101=1F1F1F;23000101=1F1F1F;23000201=1F1F1F;23000301=1F1F1F;24000101=C75A0F;24000201=FF6E0B;24000301=FF6E0B;24000401=1F1F1F;25000101=1F1F1F;25000301=FF6E0B;25000401=FF6E0B;26000101=1F1F1F;26000201=1F1F1F;26000301=FFA711;26000401=FF6E0B;27000101=1F1F1F;27000201=FF6E0B;27000301=FFA711;28000101=1F1F1F;29000101=1F1F1F;30000101=1F1F1F;31000101=1F1F1F;32000101=1F1F1F?fade;80ff80;0.0001518?blendmult=/objects/outpost/customsign/signplaceholder.png;0;-16?replace;07000101=FF6E0B;08000101=FF6E0B;09000101=FF6E0B;10000101=FF6E0B;11000101=FF6E0B;12000101=FF6E0B;13000101=FF6E0B;14000101=FFA711?fade;80ff80;0.0001518?blendmult=/objects/outpost/customsign/signplaceholder.png;-32;0?replace;01000401=1F1F1F;01000501=1F1F1F;01000601=1F1F1F;01000701=1F1F1F;01000801=1F1F1F;02000401=FFA711;02000501=FFA711;02000601=FFA711;02000701=FFA711;02000801=FFA711;03000401=1F1F1F;03000501=1F1F1F;03000601=1F1F1F;03000701=1F1F1F;03000801=1F1F1F;04000501=1F1F1F;04000601=1F1F1F;04000701=343434;04000801=343434?fade;80ff80;0.0001518?blendmult=/objects/outpost/customsign/signplaceholder.png;-32;-8?replace;01000101=1F1F1F;01000201=1F1F1F;02000101=FF6E0B;02000201=FF6E0B;03000101=1F1F1F;03000201=1F1F1F;04000101=343434?fade;80ff80;0.0001518?replace;fff=0000","maxStack" : 1,"tooltipFields":{"rarityLabel":"Unique - By Hyokkuda"}, "rarity" : "Legendary","description" : "Powered by hot molten ^red;lava^reset;! It\'s fully automatic, allowing you to create pools of molten slag that deal massive, sustained damage.","shortdescription" : "Lavaball Cannon ^yellow;^reset;","level" : 1,"category" : "Crowd Control Weapon","itemTags" : ["toy"],"twoHanded" : true,"animation" : "/items/active/weapons/ranged/gun.animation","animationParts" : {"butt" : "","middle" : "snowgun.png?setcolor=fff?replace;fff0=fff?scalenearest=1?crop=0;0;36;17?blendmult=/objects/outpost/customsign/signplaceholder.png;0;0?replace;01000401=1F1F1F;01000501=1F1F1F;01000601=1F1F1F;01000701=1F1F1F;01000801=1F1F1F;02000301=1F1F1F;02000401=343434;02000501=4A4A4A;02000601=4A4A4A;02000701=4A4A4A;02000801=4A4A4A;03000201=1F1F1F;03000301=343434;03000401=4A4A4A;03000501=FF6E0B;03000601=FFA711;03000701=FF6E0B;03000801=FFA711;04000101=1F1F1F;04000201=343434;04000301=4A4A4A;04000401=FF6E0B;04000501=FF6E0B;04000601=FF6E0B;04000701=FFA711;04000801=FFA711;05000101=1F1F1F;05000201=4A4A4A;05000301=FF6E0B;05000401=FFA711;05000501=FF6E0B;05000601=FFA711;05000701=FFFF48;05000801=FEFEFE;06000101=1F1F1F;06000201=4A4A4A;06000301=FF6E0B;06000401=FF6E0B;06000501=FFA711;06000601=FFFF48;06000701=FEFEFE;06000801=FFFF48;07000101=1F1F1F;07000201=4A4A4A;07000301=FF6E0B;07000401=FFA711;07000501=FFFF48;07000601=FFFF48;07000701=FFFF48;07000801=FEFEFE;08000101=1F1F1F;08000201=4A4A4A;08000301=FF6E0B;08000401=FF6E0B;08000501=FFA711;08000601=FFFF48;08000701=FEFEFE;08000801=FEFEFE;09000101=1F1F1F;09000201=4A4A4A;09000301=FF6E0B;09000401=FF6E0B;09000501=FFFF48;09000601=FFFF48;09000701=FFFF48;09000801=FEFEFE;10000101=1F1F1F;10000201=4A4A4A;10000301=FF6E0B;10000401=FF6E0B;10000501=FFA711;10000601=FFFF48;10000701=FEFEFE;10000801=FEFEFE;11000101=1F1F1F;11000201=343434;11000301=4A4A4A;11000401=FFA711;11000501=FF6E0B;11000601=FFA711;11000701=FFFF48;11000801=FEFEFE;12000201=1F1F1F;12000301=343434;12000401=4A4A4A;12000501=FFA711;12000601=FF6E0B;12000701=FFA711;12000801=FFA711;13000301=1F1F1F;13000401=343434;13000501=343434;13000601=343434;13000701=343434;13000801=343434;14000401=343434;14000501=343434;14000601=343434;14000701=343434;14000801=4A4A4A;15000401=1F1F1F;15000501=1F1F1F;15000601=1F1F1F;15000701=1F1F1F;15000801=1F1F1F;16000401=343434;16000501=343434;16000601=343434;16000701=343434;16000801=343434;17000401=1F1F1F;17000501=1F1F1F;17000601=1F1F1F;17000701=1F1F1F;17000801=1F1F1F;18000501=1F1F1F;18000601=1F1F1F;18000701=343434;18000801=343434;19000501=1F1F1F;19000601=1F1F1F;19000701=343434;19000801=4A4A4A;20000301=1F1F1F;20000401=1F1F1F;20000501=1F1F1F;20000601=1F1F1F;20000701=343434;20000801=4A4A4A;21000201=1F1F1F;21000301=FFA711;21000401=FFA711;21000501=1F1F1F;21000601=1F1F1F;21000701=343434;21000801=4A4A4A;22000201=1F1F1F;22000301=FF6E0B;22000501=1F1F1F;22000601=1F1F1F;22000701=343434;22000801=4A4A4A;23000201=1F1F1F;23000301=1F1F1F;23000401=1F1F1F;23000501=1F1F1F;23000601=1F1F1F;23000701=242424;23000801=292929;24000301=FF6E0B;24000401=FF6E0B;24000501=C75A0F;24000601=C75A0F;24000701=CC5F15;24000801=D2901F;25000501=1F1F1F;25000601=1F1F1F;25000701=343434;25000801=4A4A4A;26000301=1F1F1F;26000401=1F1F1F;26000501=1F1F1F;26000601=1F1F1F;26000701=343434;26000801=4A4A4A;27000201=1F1F1F;27000301=FFA711;27000401=FFA711;27000501=1F1F1F;27000601=1F1F1F;27000701=343434;27000801=4A4A4A;28000201=1F1F1F;28000301=FF6E0B;28000501=1F1F1F;28000601=1F1F1F;28000701=343434;28000801=4A4A4A;29000201=1F1F1F;29000301=1F1F1F;29000401=1F1F1F;29000501=1F1F1F;29000601=1F1F1F;29000701=242424;29000801=4A4A4A;30000301=FF6E0B;30000401=FF6E0B;30000501=C75A0F;30000601=C75A0F;30000701=CC5F15;30000801=292929;31000501=1F1F1F;31000601=343434;31000701=343434;31000801=D2651A;32000501=1F1F1F;32000601=1F1F1F;32000701=343434;32000801=D2901F?fade;80ff80;0.0001518?blendmult=/objects/outpost/customsign/signplaceholder.png;0;-8?replace;01000101=1F1F1F;01000201=1F1F1F;02000101=4A4A4A;02000201=343434;02000301=1F1F1F;03000101=FF6E0B;03000201=4A4A4A;03000301=343434;03000401=1F1F1F;04000101=FFA711;04000201=FF6E0B;04000301=4A4A4A;04000401=343434;04000501=1F1F1F;05000101=FFFF48;05000201=FFA711;05000301=FF6E0B;05000401=4A4A4A;05000501=343434;06000101=FEFEFE;06000201=FFFF48;06000301=FFA711;06000401=4A4A4A;06000501=343434;06000601=4A4A4A;07000101=FEFEFE;07000201=FEFEFE;07000301=FFA711;07000401=4A4A4A;07000501=343434;07000601=343434;07000701=FF6E0B;07000801=FF6E0B;08000101=FEFEFE;08000201=FFFF48;08000301=FFA711;08000401=4A4A4A;08000501=343434;08000601=1F1F1F;08000701=FFA711;08000801=1F1F1F;09000101=FFFF48;09000201=FEFEFE;09000301=FFA711;09000401=4A4A4A;09000501=343434;09000601=343434;09000801=1F1F1F;10000101=FEFEFE;10000201=FFFF48;10000301=FFA711;10000401=4A4A4A;10000501=343434;10000801=1F1F1F;11000101=FFFF48;11000201=FFA711;11000301=343434;11000401=4A4A4A;11000501=343434;11000801=1F1F1F;12000101=FFA711;12000201=343434;12000301=4A4A4A;12000401=343434;12000801=1F1F1F;13000101=343434;13000201=4A4A4A;13000301=343434;13000801=1F1F1F;14000101=4A4A4A;14000201=343434;14000701=1F1F1F;14000801=FF6E0B;15000101=1F1F1F;15000201=1F1F1F;15000601=1F1F1F;15000701=FF6E0B;15000801=FFA711;16000101=4A4A4A;16000201=4A4A4A;16000501=1F1F1F;16000601=343434;16000701=1F1F1F;17000101=1F1F1F;17000201=1F1F1F;17000401=1F1F1F;17000501=1F1F1F;17000601=343434;17000701=1F1F1F;18000101=1F1F1F;18000301=1F1F1F;18000401=FF6E0B;18000501=1F1F1F;18000601=4A4A4A;18000701=1F1F1F;19000101=1F1F1F;19000201=1F1F1F;19000301=FF6E0B;19000401=FFA711;19000601=252525;20000101=1F1F1F;20000201=FF6E0B;20000301=FFA711;20000501=7F0000;20000601=F00;20000701=FF4949;21000101=1F1F1F;21000201=FFA711;22000101=1F1F1F;23000101=1F1F1F;23000201=1F1F1F;23000301=1F1F1F;24000101=C75A0F;24000201=FF6E0B;24000301=FF6E0B;24000401=1F1F1F;25000101=1F1F1F;25000301=FF6E0B;25000401=FF6E0B;26000101=1F1F1F;26000201=1F1F1F;26000301=FFA711;26000401=FF6E0B;27000101=1F1F1F;27000201=FF6E0B;27000301=FFA711;28000101=1F1F1F;29000101=1F1F1F;30000101=1F1F1F;31000101=1F1F1F;32000101=1F1F1F?fade;80ff80;0.0001518?blendmult=/objects/outpost/customsign/signplaceholder.png;0;-16?replace;07000101=FF6E0B;08000101=FF6E0B;09000101=FF6E0B;10000101=FF6E0B;11000101=FF6E0B;12000101=FF6E0B;13000101=FF6E0B;14000101=FFA711?fade;80ff80;0.0001518?blendmult=/objects/outpost/customsign/signplaceholder.png;-32;0?replace;01000401=1F1F1F;01000501=1F1F1F;01000601=1F1F1F;01000701=1F1F1F;01000801=1F1F1F;02000401=FFA711;02000501=FFA711;02000601=FFA711;02000701=FFA711;02000801=FFA711;03000401=1F1F1F;03000501=1F1F1F;03000601=1F1F1F;03000701=1F1F1F;03000801=1F1F1F;04000501=1F1F1F;04000601=1F1F1F;04000701=343434;04000801=343434?fade;80ff80;0.0001518?blendmult=/objects/outpost/customsign/signplaceholder.png;-32;-8?replace;01000101=1F1F1F;01000201=1F1F1F;02000101=FF6E0B;02000201=FF6E0B;03000101=1F1F1F;03000201=1F1F1F;04000101=343434?fade;80ff80;0.0001518?replace;fff=0000","barrel" : "","muzzleFlash" : ""},"animationCustom" : {"sounds" : { "fire" : ["/sfx/gun/flamethrower_stop.ogg"]},"lights" : { "glow" : {"active" : true,"transformationGroups" : ["weapon"],"position" : [0,0],"color" : [255, 104, 10]}}},"baseOffset" : [-0.25, -0.5],"muzzleOffset" : [2.40, -0.80],"scripts" : ["/items/active/weapons/ranged/gun.lua"],"elementalType" : "fire","primaryAbility" : {"scripts" : ["/items/active/weapons/ranged/gunfire.lua"],"class" : "GunFire","fireTime" : 0.15,"baseDps" : 0,"energyUsage" : 24,"inaccuracy" : 0.02,"projectileCount" : 1,"fireType" : "auto","projectileType" : "lavaballoon","projectileParameters" : { "speed" : 60,"knockback" : 10},"stances" : { "idle" : {"armRotation" : 0,"weaponRotation" : 0,"twoHanded" : true,"allowRotate" : true,"allowFlip" : true},"fire" : {"duration" : 0,"armRotation" : -2,"weaponRotation" : -2,"twoHanded" : true,"allowRotate" : false,"allowFlip" : false},"cooldown" : {"duration" : 0.15,"armRotation" : -2,"weaponRotation" : -2,"twoHanded" : true,"allowRotate" : false,"allowFlip" : false}}},"builder" : "/items/buildscripts/buildunrandweapon.lua"}'
By Hyōkkuda, February 23 2021
Freeze Ray
/spawnitem neolaserlauncher 1 '{"itemName":"Freeze Ray","description":"Produces a concentrated beam of ice!", "tooltipFields":{"rarityLabel":"Unique - Cyn"}, "shortdescription":"Freeze Ray", "inventoryIcon" : "neolaserlauncher.png?replace;151515=2C2C2C;383838=777777;555555=AFAFAF;838383=FFFFFF;3D3D51=8181A7;676F83=D1E0FF;24232F=4A4861;E2C344=2430EC;A46E06=002CB1;F915CF=00FCE7;9F0483=00B2B4;5A024A=006566", "animation" : "neolaserlauncher.animation", "animationParts" : {"middle" : "neolaserlauncher.png?replace;151515=2C2C2C;383838=777777;555555=AFAFAF;838383=FFFFFF;3D3D51=8181A7;676F83=D1E0FF;24232F=4A4861;E2C344=2430EC;A46E06=002CB1", "middleFullbright" : "neolaserlauncherfullbright.png?replace;F915CF=00FCE7;9F0483=00B2B4;5A024A=006566", "muzzleFlash" : ""}, "primaryAbility" : { "scripts" : ["/items/active/weapons/ranged/beamfire.lua"], "class" : "BeamFire", "fireTime" : 0.1, "baseDps" : 12.0, "energyUsage" : 15, "damageConfig" : { "statusEffects" : ["frostslow"], "damageSourceKind" : "ice", "knockback" : 2 }, "beamLength" : 50, "chain" : { "startOffset" : [0, 0], "segmentImage" : "/items/active/weapons/ranged/unrand/neolaserlauncher/beam.png?replace;F915CF=00EAF7;9F0483=0098C6", "endSegmentImage" : "/items/active/weapons/ranged/unrand/neolaserlauncher/beam.png?replace;F915CF=00EAF7;9F0483=0098C6", "segmentSize" : 1.0, "overdrawLength" : 0.0, "taper" : 0.0, "jitter" : 0.125, "waveform" : { "frequency" : 1.0, "amplitude" : 0.25, "movement" : 0.0 }, "fullbright" : true, "light" : [0, 255, 255] }, "stances" : { "idle" : { "armRotation" : 0, "weaponRotation" : 0, "twoHanded" : true, "allowRotate" : true, "allowFlip" : true }, "fire" : { "duration" : 0, "armRotation" : 0, "weaponRotation" : 0, "twoHanded" : true, "allowRotate" : true, "allowFlip" : true }, "cooldown" : { "duration" : 0.1, "armRotation" : 0, "weaponRotation" : 0, "twoHanded" : true, "allowRotate" : true, "allowFlip" : true }}}}
Cyn (talk) 18:11, 14 January 2025 (UTC)Cyn
Wager
/spawnitem commonsniperrifle 1 '{ "level": 6, "seed": 1337, "shortdescription": "Wager", "category": "pistol", "altAbilityType": "rocketburst", "altAbility": { "fireTime": 0.6, "energyUsage": 140, "inaccuracy": 0.02, "projectileType": "plasma1", "projectileParameters": { "power": 8 }, "fireType": "burst", "burstCount": 1, "burstTime": 1.8, "stances": { "fire": { "duration": 4, "armRotation": 0, "weaponRotation": 0, "weaponOffset": [-0.1, 0], "twoHanded": true, "allowRotate": true, "allowFlip": true }, "cooldown": { "duration": 10.0, "armRotation": 10, "weaponRotation": 30, "twoHanded": true, "allowRotate": true, "allowFlip": true, "weaponOffset": [0, 0] } } }, "primaryAbility": { "baseDps": 9, "energyUsage": 30, "fireTime": 0.7, "inaccuracy": 0.02, "projectileCount": 1, "projectileType": "blueplasmabullet", "projectileParameters": { "knockback": 22 }, "stances": { "idle": { "armRotation": 0, "weaponRotation": 0, "twoHanded": false, "allowRotate": true, "allowFlip": true }, "fire": { "duration": 0, "armRotation": 5, "weaponRotation": 5, "twoHanded": true, "allowRotate": false, "allowFlip": false }, "cooldown": { "duration": 0.7, "armRotation": 15, "weaponRotation": 15, "twoHanded": true, "allowRotate": true, "allowFlip": true, "weaponOffset": [0, 0] } } }, "animationCustom": { "sounds": { "fire": ["/sfx/gun/plasma_shotgun1.ogg"] }, "animatedParts": { "parts": { "middle": { "properties": { "image": "/items/active/weapons/ranged/pistol/middle/10.png?replace;404040=131313;606060=383838;808080=555555;b22042=8c571d;e35f5d=c78a2a", "offset": [0.25, -0.875], "fullbright": true, "centered": false } }, "butt": { "properties": { "image": "/items/active/weapons/ranged/pistol/butt/15.png?replace;871132=3e2510;565656=383838;808080=808080;b22042=6c4420;e35f5d=9c7240", "offset": [-0.5, -0.875], "fullbright": true, "centered": false } }, "barrel": { "properties": { "firePosition": [2.5, -0.875], "image": "/items/active/weapons/ranged/shotgun/barrel/7.png?replace;404040=131313;606060=3e3f50;808080=7b7b7b;871132=344495;b22042=5588d4", "offset": [1, -0.875], "fullbright": true, "centered": false } } } } }, "inventoryIcon": [{ "image": "/items/active/weapons/ranged/pistol/middle/10.png?replace;404040=131313;606060=383838;808080=555555;b22042=8c571d;e35f5d=c78a2a", "position": [0.0, 0.0] }, { "image": "/items/active/weapons/ranged/pistol/butt/15.png?replace;871132=3e2510;565656=383838;808080=808080;b22042=6c4420;e35f5d=9c7240", "position": [-6.0, 0.0] }, { "image": "/items/active/weapons/ranged/shotgun/barrel/7.png?replace;404040=131313;606060=3e3f50;808080=7b7b7b;871132=344495;b22042=5588d4", "position": [9.5, 0.0] }], "baseOffset": [0, 0], "muzzleOffset": [2.75, 0.75], "elementalType": "physical", "rarity": "Legendary" }'
By Gunnar circa Dec 30, 2017[1]
