Skip to content

Commit

Permalink
Merge pull request #44 from SilverSokolova/master
Browse files Browse the repository at this point in the history
Better category code + new oSB "add unadded items" script
  • Loading branch information
Silverfeelin authored Sep 18, 2024
2 parents 3c64ee2 + 1cffc29 commit 9bf5e41
Show file tree
Hide file tree
Showing 152 changed files with 370 additions and 499 deletions.
5 changes: 4 additions & 1 deletion .metadata
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,8 @@
"priority" : -1,
"steamContentId" : "733665104",
"tags" : "Crafting and Building|Cheats and God Items|User Interface|In-Game Tools",
"version" : "1.4.4"
"version" : "1.4.4.1",
"scripts" : {
"postLoad" : ["/scripts/sip_postload.lua"]
}
}
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ You can only select one category at once. Deselecting the current category is po
* Randomize generated items before spawning them.
* Copy existing items by dragging them on the item slot.

**OpenStarbound**
Some features are exclusive to [OpenStarbound](https://github.com/OpenStarbound/OpenStarbound) because of the additional modding capabilities the project offers.

* Items from all installed mods are automatically added to the Spawnable Item Pack ([contribution](https://github.com/Silverfeelin/Starbound-SpawnableItemPack/pull/44) by [SilverSokolova](https://github.com/SilverSokolova)).

## Things to note
* Game updates that add or remove items may cause issues, as the mod uses its own item file.

Expand Down
2 changes: 1 addition & 1 deletion credits.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Special thanks to:
Volnues - Spriting (background, printer, categories, rarities)
NOICEMEMES - Spriting (physical element)
RexmecK - Compatibility with Rexmeck's Item Editor Pro
SilverSokolova - Improving object categories
SilverSokolova - Improving object categories and OpenStarbound "add unadded items" script
Mehgugs - Fixing missing image crash
GTG3000 - Removing legacy code

Expand Down
Binary file modified interface/sip/body.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
195 changes: 195 additions & 0 deletions interface/sip/categories.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,195 @@
// This is structured slightly differently from how SIP mods do their
// categories because we want the order not to be randomized.
[{
"Vanity:": [{
"image": "/interface/sip/categories/vanityhat.png",
"selectedImage": "/interface/sip/categories/vanityhatselected.png",
"categories": ["headwear", "head"]
}, {
"image": "/interface/sip/categories/vanitychest.png",
"selectedImage": "/interface/sip/categories/vanitychestselected.png",
"categories": ["chestwear", "chest"]
}, {
"image": "/interface/sip/categories/vanitypants.png",
"selectedImage": "/interface/sip/categories/vanitypantsselected.png",
"categories": ["legwear", "legs"]
}, {
"image": "/interface/sip/categories/vanityback.png",
"selectedImage": "/interface/sip/categories/vanitybackselected.png",
"categories": ["backwear", "back"]
}
]
}, {
"Armor:": [{
"image": "/interface/sip/categories/armorhelm.png",
"selectedImage": "/interface/sip/categories/armorhelmselected.png",
"categories": ["headarmour", "head"]
}, {
"image": "/interface/sip/categories/armorchest.png",
"selectedImage": "/interface/sip/categories/armorchestselected.png",
"categories": ["chestarmour", "chest"]
}, {
"image": "/interface/sip/categories/armorpants.png",
"selectedImage": "/interface/sip/categories/armorpantsselected.png",
"categories": ["legarmour", "legs"]
}, {
"image": "/interface/sip/categories/envirormental.png",
"selectedImage": "/interface/sip/categories/envirormentalselected.png",
"categories": "enviroprotectionpack"
}
]
}, {
"Combat:": [{
"image": "/interface/sip/categories/weapons.png",
"selectedImage": "/interface/sip/categories/weaponsselected.png",
"categories": [
"melee", "broadsword", "fistweapon", "chakram",
"axe", "dagger", "hammer", "spear",
"shortsword", "whip"
]
}, {
"image": "/interface/sip/categories/gun.png",
"selectedImage": "/interface/sip/categories/gunselected.png",
"categories": [
"ranged", "sniperrifle", "boomerang", "bow",
"shotgun", "assaultrifle", "machinepistol", "rocketlauncher",
"pistol", "grenadelauncher", "staff", "wand"]
}, {
"image": "/interface/sip/categories/throwables.png",
"selectedImage": "/interface/sip/categories/throwablesselected.png",
"categories": ["throwableitem", "thrownitem"]
}, {
"image": "/interface/sip/categories/shields.png",
"selectedImage": "/interface/sip/categories/shieldsselected.png",
"categories": "shield"
}
]
}, {
"Equipment:": [{
"image": "/interface/sip/categories/tech.png",
"selectedImage": "/interface/sip/categories/techselected.png",
"categories": ["tech", "vehiclecontroller", "railplatform"]
}, {
"image": "/interface/sip/categories/upgrade.png",
"selectedImage": "/interface/sip/categories/upgradeselected.png",
"categories": ["upgrade", "shiplicense", "unlock", "blueprint"]
}, {
"image": "/interface/sip/categories/activatable.png",
"selectedImage": "/interface/sip/categories/activatableselected.png",
"categories": ["mysteriousreward", "toy", "clothingdye"]
}, {
"image": "/interface/sip/categories/consumable.png",
"selectedImage": "/interface/sip/categories/consumableselected.png",
"categories": ["consumable", "medicine", "drink", "food", "preparedfood"]
}, {
"image": "/interface/sip/categories/instrument.png",
"selectedImage": "/interface/sip/categories/instrumentselected.png",
"categories": ["musicalinstrument", "instrument"]
}, {
"image": "/interface/sip/categories/tool.png",
"selectedImage": "/interface/sip/categories/toolselected.png",
"categories": [
"tools", "tool", "fishingrod", "fishinglure", "fishingreel",
"miningtool", "flashlight", "wiretool", "beamaxe", "tillingtool",
"painttool", "harvestingtool", "inspectiontool"
]
}, {
"image": "/interface/sip/categories/mech.png",
"selectedImage": "/interface/sip/categories/mechselected.png",
"categories": ["mechpart"]
}, {
"image": "/interface/sip/categories/augment.png",
"selectedImage": "/interface/sip/categories/augmentselected.png",
"categories": ["eppaugment", "petcollar", "augment"]
}
]
}, {
"Items:": [{
"image": "/interface/sip/categories/silver.png",
"selectedImage": "/interface/sip/categories/silverselected.png",
"categories": ["ingredients", "craftingmaterial", "cookingingredient", "upgradecomponent"]
}, {
"image": "/interface/sip/categories/fossil.png",
"selectedImage": "/interface/sip/categories/fossilselected.png",
"categories": ["fossils", "smallfossil", "mediumfossil", "largefossil"]
}, {
"image": "/interface/sip/categories/codices.png",
"selectedImage": "/interface/sip/categories/codicesselected.png",
"categories": "codex"
}, {
"image": "/interface/sip/categories/other.png",
"selectedImage": "/interface/sip/categories/otherselected.png",
"categories": [
"miscellaneous", "quest", "junk", "currency", "trophy", "tradingcard", "item"
]
}
]
}, {
"Building:": [{
"image": "/interface/sip/categories/matitems.png",
"selectedImage": "/interface/sip/categories/matitemsselected.png",
"categories": [
"blocks", "block", "materials", "liqitem", "supports", "railpoint", "matitem"
]
}, {
"image": "/interface/sip/categories/platforms.png",
"selectedImage": "/interface/sip/categories/platformsselected.png",
"categories": "platform"
}, {
"image": "/interface/sip/categories/liquids.png",
"selectedImage": "/interface/sip/categories/liquidsselected.png",
"categories": ["liquid", "liqitem"]
}, {
"image": "/interface/sip/categories/furniture.png",
"selectedImage": "/interface/sip/categories/furnitureselected.png",
"categories": "furniture"
}, {
"image": "/interface/sip/categories/decoratives.png",
"selectedImage": "/interface/sip/categories/decorativesselected.png",
"categories": [
"decorative", "actionfigure", "artifact", "breakable", "bug"
]
}, {
"image": "/interface/sip/categories/crafting.png",
"selectedImage": "/interface/sip/categories/craftingselected.png",
"categories": "crafting"
}, {
"image": "/interface/sip/categories/spawner.png",
"selectedImage": "/interface/sip/categories/spawnerselected.png",
"categories": "spawner"
}, {
"image": "/interface/sip/categories/doors.png",
"selectedImage": "/interface/sip/categories/doorsselected.png",
"categories": "door"
}, {
"image": "/interface/sip/categories/chests.png",
"selectedImage": "/interface/sip/categories/chestsselected.png",
"categories": ["storage", "fridgestorage"]
}, {
"image": "/interface/sip/categories/lights.png",
"selectedImage": "/interface/sip/categories/lightsselected.png",
"categories": "light"
}, {
"image": "/interface/sip/categories/traps.png",
"selectedImage": "/interface/sip/categories/trapsselected.png",
"categories": "trap"
}, {
"image": "/interface/sip/categories/wired.png",
"selectedImage": "/interface/sip/categories/wiredselected.png",
"categories": "wire"
}, {
"image": "/interface/sip/categories/produce.png",
"selectedImage": "/interface/sip/categories/produceselected.png",
"categories": ["produce", "sapling", "seed"]
}, {
"image": "/interface/sip/categories/terraformer.png",
"selectedImage": "/interface/sip/categories/terraformerselected.png",
"categories": "terraformer"
}, {
"image": "/interface/sip/categories/other.png",
"selectedImage": "/interface/sip/categories/otherselected.png",
"categories": ["other", "generic", "teleportmarker", "teleporter", "object"]
}
]
}
]
Binary file modified interface/sip/categories/activatable.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/activatables.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/activatableselected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/activatablesselected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/armorchest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/armorchestselected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/armorhelm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/armorhelmselected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/armorpants.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/armorpantsselected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added interface/sip/categories/augment.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added interface/sip/categories/augmentselected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/blank.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/blankselected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added interface/sip/categories/captioned.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added interface/sip/categories/captionedselected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/chests.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/chestsselected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/codices.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/codicesselected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/consumable.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/consumableselected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/crafting.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/crafting2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified interface/sip/categories/craftingselected.png
Binary file modified interface/sip/categories/decoratives.png
Binary file modified interface/sip/categories/decorativesselected.png
Binary file modified interface/sip/categories/doors.png
Binary file modified interface/sip/categories/doorsselected.png
Binary file modified interface/sip/categories/envirormental.png
Binary file modified interface/sip/categories/envirormentalselected.png
Binary file modified interface/sip/categories/fossil.png
Binary file modified interface/sip/categories/fossilselected.png
Binary file modified interface/sip/categories/furniture.png
Binary file modified interface/sip/categories/furnitureselected.png
Binary file modified interface/sip/categories/gun.png
Binary file modified interface/sip/categories/gunselected.png
Binary file modified interface/sip/categories/instrument.png
Binary file modified interface/sip/categories/instrumentselected.png
Binary file modified interface/sip/categories/lights.png
Binary file modified interface/sip/categories/lightsselected.png
Binary file modified interface/sip/categories/liquids.png
Binary file modified interface/sip/categories/liquidsselected.png
Binary file modified interface/sip/categories/matitems.png
Binary file modified interface/sip/categories/matitemsselected.png
Binary file modified interface/sip/categories/mech.png
Binary file modified interface/sip/categories/mechselected.png
Binary file modified interface/sip/categories/other.png
Binary file modified interface/sip/categories/otherselected.png
Binary file modified interface/sip/categories/platforms.png
Binary file modified interface/sip/categories/platformsselected.png
Binary file modified interface/sip/categories/produce.png
Binary file modified interface/sip/categories/produceselected.png
Binary file modified interface/sip/categories/shields.png
Binary file modified interface/sip/categories/shieldsselected.png
Binary file modified interface/sip/categories/silver.png
Binary file modified interface/sip/categories/silverselected.png
Binary file modified interface/sip/categories/spawner.png
Binary file modified interface/sip/categories/spawnerselected.png
Binary file modified interface/sip/categories/storage.png
Binary file modified interface/sip/categories/storageselected.png
Binary file modified interface/sip/categories/tech.png
Binary file modified interface/sip/categories/techselected.png
Binary file modified interface/sip/categories/terraformer.png
Binary file modified interface/sip/categories/terraformerselected.png
Binary file modified interface/sip/categories/throwables.png
Binary file modified interface/sip/categories/throwablesselected.png
Binary file modified interface/sip/categories/tool.png
Binary file modified interface/sip/categories/toolselected.png
Binary file modified interface/sip/categories/traps.png
Binary file modified interface/sip/categories/trapsselected.png
Binary file modified interface/sip/categories/upgrade.png
Binary file modified interface/sip/categories/upgradeselected.png
Binary file modified interface/sip/categories/vanityback.png
Binary file modified interface/sip/categories/vanitybackselected.png
Binary file modified interface/sip/categories/vanitychest.png
Binary file modified interface/sip/categories/vanitychestselected.png
Binary file modified interface/sip/categories/vanityhat.png
Binary file modified interface/sip/categories/vanityhatselected.png
Binary file modified interface/sip/categories/vanitypants.png
Binary file modified interface/sip/categories/vanitypantsselected.png
Binary file modified interface/sip/categories/weapons.png
Binary file modified interface/sip/categories/weaponsselected.png
Binary file modified interface/sip/categories/wired.png
Binary file modified interface/sip/categories/wiredselected.png
Binary file modified interface/sip/categorybackground.png
Binary file modified interface/sip/color.png
Binary file modified interface/sip/editor.png
Binary file modified interface/sip/elements/physical.png
Binary file modified interface/sip/featurebutton.png
Binary file modified interface/sip/firstpage.png
Binary file modified interface/sip/footer.png
Binary file modified interface/sip/header.png
Binary file modified interface/sip/icon.png
Binary file modified interface/sip/iconSmall.png
Binary file modified interface/sip/itembackground.png
Binary file modified interface/sip/itemoverlay.png
Binary file modified interface/sip/itemselected.png
Binary file modified interface/sip/lastpage.png
Binary file modified interface/sip/less.png
2 changes: 1 addition & 1 deletion interface/sip/lines.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"showObjects": "Show All\nObjects",

"descriptionMissing" : "No description could be found for this item.",
"itemDetails" : "Please select an item to view it's details.",
"itemDetails" : "Please select an item to view its details.",
"noSelection" : "No item selected.",

"copiedItem" : "Copied Item",
Expand Down
Binary file modified interface/sip/more.png
Binary file modified interface/sip/muiSIP.png
Binary file modified interface/sip/page.png
Binary file modified interface/sip/print.png
Binary file modified interface/sip/printamount.png
Binary file modified interface/sip/printitem.png
Binary file modified interface/sip/rarities/filters/background.png
Binary file modified interface/sip/rarities/filters/common.png
Binary file modified interface/sip/rarities/filters/essential.png
Binary file modified interface/sip/rarities/filters/legendary.png
Binary file modified interface/sip/rarities/filters/rare.png
Binary file modified interface/sip/rarities/filters/uncommon.png
Binary file modified interface/sip/rarities/flags/common.png
Binary file modified interface/sip/rarities/flags/essential.png
Binary file modified interface/sip/rarities/flags/legendary.png
Binary file modified interface/sip/rarities/flags/rare.png
Binary file modified interface/sip/rarities/flags/uncommon.png
Binary file modified interface/sip/recipe.png
Binary file modified interface/sip/search.png
Binary file modified interface/sip/selectioniconbackground.png
Binary file modified interface/sip/settingsBackground.png
Binary file modified interface/sip/settingsBody.png
Loading

0 comments on commit 9bf5e41

Please sign in to comment.