Starbound

Starbound

47 个评价
[Modder Resource] Dungeon Patch Cheat Sheet for Every Planet on the Workshop (with .biome files)
3
2
3
   
奖励
收藏
已收藏
取消收藏
文件大小
发表于
更新日期
14.985 MB
4 月 21 日 上午 8:43
10 月 12 日 下午 12:39
13 项改动说明 ( 查看 )

订阅以下载
[Modder Resource] Dungeon Patch Cheat Sheet for Every Planet on the Workshop (with .biome files)

在 FUS 的 1 个合集中
All mods what add Planets or Moons to the Universe
67 件物品
描述
Now on GitHub: https://github.com/FUS132/Starbound-Planets

Got really bored one evening, decided to catalogue all planets ever released on Steam Workshop and assemble them in terrestrial_worlds.config patches, I guess as a way to encourage people make their mods more interactive with each other.

Disclamer: The mod does nothing on it's own.

But inside of it there are 3 terrestrial_worlds.config.patch files you can pick-and-choose the contents from to make patches for your own mods, 1 for land planets, 1 for moons, and 1 for oceanic planets, all categorised, and in places with additional comments.

Eternally WiP, as more planets will (or will not) come in eventually and have to be added, but for everything else what's already in there it's pretty much done and ready to be used (assuming I didn't miss any mods, of course).

  • As an extra, I've included all .biome files I could find in related mods, also categorised, just in case you need to add critters or microdungeons to them or something (will have to make .patch files for those on your own though I'm afraid);

  • No terraformers were included which didn't had a patch to make them spawn around the universe (so basically all of them but 1), and no parallel dimensions, for obvious reasons;

  • For the included mods see attached collection;

  • Mod thumbnail was found on Freepik as "Pixel planets set, pixel art solar system", by diluck.


Enjoy
21 条留言
FUS  [作者] 7 月 29 日 上午 9:34 
Well you're in luck because I finished updating it just a few hours ago!
Armok 7 月 29 日 上午 8:01 
Somehow missed this mod lol, nice to see I wasn't the only one who wanted to be thorough in adding modded planet support
󠀡󠀡 6 月 9 日 下午 3:40 
thanks :D
FUS  [作者] 6 月 9 日 上午 5:57 
Dammit, I remember glossing over these 2 because the title said "on Planets" instead of "with Planets". One moment.
Дикий Огурец 4 月 30 日 下午 1:18 
Got it, thanks. Just wanted to remove all microdungeons and structures from FU.
FUS  [作者] 4 月 26 日 下午 12:26 
Pt. 3 - And as for the microdungeons, in .biome files paths to the microdungeon lists wary from file to file, could be higher, could be lower.
So you'll have to address them on a case by case basis there. Patch generators help with that a lot.
FUS  [作者] 4 月 26 日 下午 12:23 
Pt. 2 - The caveat is though, when removing modded entires, say, from a vanilla planet, first you'll have to account for the vanilla entries (i.e. not start from 0, but from whatever the first unused number after them is (in the .config), usually it's 22, but that can vary).

And second, you'll have to do the same test/remove operation on a few more numbers afterwards, because modded entries will shuffle around the list from load order to load order, so you'll have to check a bunch of them for the one you want to delete.

Oh, and don't forget to include the affected mod in the _metadata, otherwise there won't be anything to remove in case it loads after your patch.

It'd be wonderful if there was a more elegant way of doing it, but sadly I'm not aware of any.
FUS  [作者] 4 月 26 日 下午 12:23 
Pt. 1 - Technically yes, but the patch would be written differently.
For example, to remove an Avian Temple from the Forest planet in vanilla terrestrial_worlds.config:

[
{
"op": "test",
"path": "/planetTypes/forest/layers/surface/dungeons/4",
"value": [1, "aviantemple"]
},
{
"op": "remove",
"path": "/planetTypes/forest/layers/surface/dungeons/4"
}
]
Дикий Огурец 4 月 26 日 上午 11:42 
Can it be used to remove existing structures in mods and micro dungeons?