Hi
I have a mapping/decorate question. I'd like to hear some opinions on what's the smartest way to go about this.
My friends and I are working on a mapset designed for vanilla, but our modder would like to include an -optional- gameplay mod enchancement with it that adds some extra enemies. Suppose a mapper wanted to add the new monsters to their map. The mapper places a new thing and changes the ThingID to that of the newly created monster.
Again, the gameplay mod is supposed to be optional. The map should be able to be played without the gameplay mod. When playing without the gameplay mod, the new thing will not appear in the game. But we would at least like... something to appear?
We thought of two options, none of which seem ideal.
1. We create a dehacked patch that duplicates a vanilla monster (such as a revenant) to share IDs with the custom monsters in the decorate mod. With the mod, the new monster will appear. Our thinking is that when playing without the mod, the dehacked patch will substitute the custom monster with a revenant. We don't know yet if using dehacked in conjunction with decorate will create conflicts, or which lump takes priority over the other. We're also doubtful users will load a dehacked patch that essentially adds no custom content to the wad.
2. We rename one of the skill levels to "no gameplay mod" and use the skill flags to call vanilla monsters versus custom ones. This kinda forfeits skill levels in our maps though, doesn't it?
Keep in mind we don't want to replace all or most of a particular monster species with a custom decorate one. Ideally we would like to let the mapper have full control of their vanilla monster placement, be free to place new monsters, and let players choose whether they play with or without the gameplay mod without compromising the map.
Thoughts?