Created
March 7, 2024 01:13
-
-
Save spacechase0/8a80b22655f624d9854486bfbe5abc7e to your computer and use it in GitHub Desktop.
Custom shop tabs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Action":"EditData", | |
"Target":"spacechase0.SpaceCore/ShopExtensionData", | |
"Entries": | |
{ | |
"SeedShop": | |
{ | |
"Tabs": "Custom", | |
"CustomTabs": [ | |
{ | |
"Id": "Everything", | |
"IconTexture": "{{InternalAssetKey: tabs.png}}", | |
"IconRect": { "X": 0, "Y": 16, "Width": 16, "Height": 16 }, | |
"FilterCondition": "TRUE" | |
}, | |
{ | |
"Id": "Seeds", | |
"IconTexture": "{{InternalAssetKey: tabs.png}}", | |
"IconRect": { "X": 0, "Y": 0, "Width": 16, "Height": 16 }, | |
"FilterCondition": "ITEM_CATEGORY Input -74" | |
}, | |
{ | |
"Id": "Fertilizer", | |
"IconTexture": "{{InternalAssetKey: tabs.png}}", | |
"IconRect": { "X": 16, "Y": 0, "Width": 16, "Height": 16 }, | |
"FilterCondition": "ITEM_CATEGORY Input -19" | |
}, | |
{ | |
"Id": "Other", | |
"IconTexture": "{{InternalAssetKey: tabs.png}}", | |
"IconRect": { "X": 16, "Y": 16, "Width": 16, "Height": 16 }, | |
"FilterCondition": "!ITEM_CATEGORY Input -74, !ITEM_CATEGORY Input -19" | |
} | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment