
Addition to `Spawn`
SiverDX opened this issue ยท 5 comments
Mod: https://www.curseforge.com/minecraft/mc-mods/gothic-rpg
passiveMobsList = builder.comment(Constants.CONFIG_LIST_PASSIVE_MOBS)
.define("PassiveMobsList", new ArrayList<String>(Arrays.asList(
// @formatter:off
"gothic:meatbug",
"gothic:meatbug_tamed"
// @formatter:on
)));
neutralMobsList = builder.comment(Constants.CONFIG_LIST_NEUTRAL_MOBS)
.define("NeutralMobsList", new ArrayList<String>(Arrays.asList(
// @formatter:off
"gothic:npc_farmer",
"gothic:npc_oldcamp_hunter"
// @formatter:on
)));
hostileMobsList = builder.comment(Constants.CONFIG_LIST_HOSTILE_MOBS)
.define("HostileMobsList", new ArrayList<String>(Arrays.asList(
// @formatter:off
"gothic:bloodfly",
"gothic:bloodfly_hornet",
"gothic:dragon_snapper",
"gothic:gothic_wolf",
"gothic:ice_wolf",
"gothic:lurker",
"gothic:molerat",
"gothic:razor",
"gothic:scavenger",
"gothic:shadowbeast",
"gothic:snapper",
"gothic:stone_guardian",
"gothic:warg"
// @formatter:on
)));
Question:
How do the mob types need to be specified?
The hostile creatures act like hostile creatures (e. g. attack on sight) but I think they (or some?) are specified as Passive (Ambient)
Would that cause a problem?
Would it maybe be possible to allow for dynamic loading by defining the config specs as list and then parsing the directory for valid files and creating the config elements for each found file?
The categorization like passive, neutral and aggressive is not checking / verifying the actually mob type.
It's more to be able to have three different kinds of groups to define different spawn caos for each of the group.
There is already a "Custom Spawn Config" which allows you to add any kind of mobs which are not already covered by one of the other lists.
Yeah I saw the custome one but only allows you to add one configuration (unless you want to throw multiple mods into one), doesn't it?