Truinto / ONI-Modloader-SimpleMods

OxygenNotIncluded Mods
MIT License
16 stars 6 forks source link

Piped Everything: Config additions #60

Closed ECHOSUD closed 3 months ago

ECHOSUD commented 3 months ago

Steam workshop comments are limited to 1000 characters. I'm presuming then this is the best place to host config additions. If not intended to be apart of the base mod, it would be nice if the description would reflect where users can go find community made configs.

Config Additions

Refrigerator & Big Storage: Restoraged

Using the same config options as StorageLocker, the following should be the config for Vanilla Refrigerator and the buildings from the Big Storage: Restoraged mod. Because the config is the same as StorageLocker, I haven't made the filters (Refrigerator & BigRefrigerator) or storage capacity more specific.

config

        {
            "Id": "Refrigerator",
            "Input": true,
            "OffsetX": 0,
            "OffsetY": 0,
            "Filter": [
                "Solid"
            ],
            "StorageCapacity": "Infinity"
        },
        {
            "Id": "BigRefrigerator",
            "Input": true,
            "OffsetX": 0,
            "OffsetY": 0,
            "Filter": [
                "Solid"
            ],
            "StorageCapacity": "Infinity"
        },
        {
            "Id": "BigBeautifulStorageLocker",
            "Input": true,
            "OffsetX": 0,
            "OffsetY": 0,
            "Filter": [
                "Solid"
            ],
            "StorageCapacity": "Infinity"
        },
        {
            "Id": "BigSmartStorageLocker",
            "Input": true,
            "OffsetX": 0,
            "OffsetY": 0,
            "Filter": [
                "Solid"
            ],
            "StorageCapacity": "Infinity"
        },
        {
            "Id": "BigStorageLocker",
            "Input": true,
            "OffsetX": 0,
            "OffsetY": 0,
            "Filter": [
                "Solid"
            ],
            "StorageCapacity": "Infinity"
        },
        {
            "Id": "BigStorageTile",
            "Input": true,
            "OffsetX": 0,
            "OffsetY": 0,
            "Filter": [
                "Solid"
            ],
            "StorageCapacity": "Infinity"
        },
        {
            "Id": "StorageTile",
            "Input": true,
            "OffsetX": 0,
            "OffsetY": 0,
            "Filter": [
                "Solid"
            ],
            "StorageCapacity": "Infinity"
        }
ECHOSUD commented 3 months ago

Deodorizer, Oxygen Diffuser, Rust Deoxidizer

config

{
            "Id": "AirFilter",
            "Input": false,
            "OffsetX": 0,
            "OffsetY": 0,
            "Filter": [
                "Clay"
            ]
        },
        {
            "Id": "MineralDeoxidizer",
            "Input": true,
            "OffsetX": 0,
            "OffsetY": 0,
            "Filter": [
                "Algae"
            ],
            "StorageCapacity": 330
        },
        {
            "Id": "RustDeoxidizer",
            "Input": true,
            "OffsetX": 0,
            "OffsetY": 0,
            "Filter": [
                "Rust",
                "Salt"
            ],
            "StorageCapacity": 780
        },
        {
            "Id": "RustDeoxidizer",
            "Input": false,
            "OffsetX": 1,
            "OffsetY": 0,
            "Filter": [
                "IronOre"
            ]
        }
Truinto commented 3 months ago

Steam has a discussion tab for each object. I think that's a fine place. Otherwise github also has a discussion tab. It will be lost quickly in the "issues" tab. You can handle it as you like. There is very little interest in modifications. Most people will just uninstall, if it does not do what they want.