stardewplanner icon indicating copy to clipboard operation
stardewplanner copied to clipboard

Missing 1.5 content

Open MegaKBang opened this issue 4 years ago • 3 comments

Most of the 1.5 stuff(mostly the new machines, the Sprinkler nozzles and other) are missing. Also the shipping bin is now moveable. And the island farm(including the new obelisk) is missing aswell. Also I was wondering if it was possible to add custom .xnb support. So we could use our own xnb there and plan the farm from there. I love your planner!

MegaKBang avatar Jan 09 '21 16:01 MegaKBang

I have added the following items: banana tree, mahogany tree, mango tree, stone walkway, rustic plank floor, mini obelisk, island obelisk, bone mill, auto petter, dark sign farm computer, stone chest, geode crusher, heavy tapper, hopper, mini shipping bin, solar panel

I will look into adding the island farm and sprinkler nozzles next week.

Let me know if there is anything else that should be added (you can list them here with wiki links).

Regarding .xnb support, it would definitely be cool, but I'm unaware of any methods I could unpack the .xnb correctly and fetch the correct background image from it using server tools programmatically. If you know how, please let me know.

hpeinar avatar Jan 10 '21 13:01 hpeinar

Thanks for your hard work! I was looking throught the changelog again and found the following things: https://stardewcommunitywiki.com/Fiber_Seeds (Fiber Seeds) https://stardewcommunitywiki.com/Pineapple_Seeds (Pineapple Seeds) https://stardewcommunitywiki.com/Taro_Tuber (Taro Root) https://stardewcommunitywiki.com/Qi_Bean (Qi Beans) https://stardewcommunitywiki.com/Coffee_Maker (Coffee Maker) https://stardewcommunitywiki.com/Cookout_Kit (Cookout Kit) https://stardewcommunitywiki.com/Deconstructor (Deconstructor) https://stardewcommunitywiki.com/Junimo_Chest (Junimo Chest) https://stardewcommunitywiki.com/Statue_Of_True_Perfection (Statue of true perfection)

From older versions: https://stardewcommunitywiki.com/Statue_Of_Endless_Fortune https://stardewcommunitywiki.com/Statue_of_Perfection

Also fully upgraded farm buildings(house, barn, coop, shed) can be painted now. And most furniture can be placed outside now, but I wans't able to find a list of it in the internet. Edit2: nvm the new floors were added

MegaKBang avatar Jan 10 '21 13:01 MegaKBang

Any chance you can get the pressure nozzles in soon? I finally have access to them and I'd like to redesign my farm with them.

no reason to add anything other than the iridium one with the pressure nozzle since no sane person would use one on anything else

sprites.js -

            "sprite": "./img/tiles/irid-sprinkler-noz.png",
            "width": 16,
            "height": 16,
            "highlight": {
                "path": ["M0,0", "L0,112", "L112,112", "L112,0", "z"],
                "width": 112,
                "height": 112
            }
        },

importer.js

// list of objects that are considered buildings
// objects/terrain to exclude from output
// what to rename objects to
var objectNameMap = {
    "rarecrow" : "scarecrow",
    "iridium sprinkler" : "irid-sprinkler",
    "iridium sprinkler nozzle" : "irid-sprinkler-noz",
    "quality sprinkler" : "q-sprinkler",
    "bee house" : "bee-hive",
    "slime hutch" : "slime-hutch",
    "stone cabin": "stone-cabin",
    "plank cabin": "plank-cabin",
    "log cabin": "log-cabin"
};

styles.css

.sprite-icon.irid-sprinkler-noz {
    background-image: url('/planner/img/tiles/irid-sprinkler-noz.png');
}

not sure what you'd want to name it in index.html. kinda long of a name.

sprites are here - https://stardewvalleywiki.com/Pressure_Nozzle

YourFavoritePerson avatar May 04 '21 18:05 YourFavoritePerson