Yeah, I can pick them back up and re-equip them, but that sort of defeats the purpose of an emergency escape transformation.
Anyway, I have a new question, that's actually twofold:
1) In what form am I most likely to find milk in adventure mode? In barrels?
2) How can I make a reaction require a specific creature's milk (cows' milk, for example) that's in a container (if a barrel is the most common milk container, then I'll use that)?
I'm working on a small mod, and I want to make what's basically a narcotic using a new creature's milk. It'll require the milk, a new plant or two, and an empty flask, and it'll put the new substance (done as another new plant's drink form) in the flask. Problem is, I don't really know how to do any of that.
EDIT: Okay, so I have this so far:
[REACTION:BREW_FLUFF_POTION]
[NAME:brew fluff potion]
[ADVENTURE_MODE_ENABLED]
[REAGENT:container:1:FLASK:NONE:NONE:NONE]
[EMPTY]
[NOT_IMPROVED]
[PRESERVE_REAGENT]
[REAGENT:milk:1:
[UNROTTEN]
[REAGENT:milk container:1:NONE:NONE:NONE:NONE]
[CONTAINS:milk]
[PRESERVE_REAGENT]
[DOES_NOT_DETERMINE_PRODUCT_AMOUNT]
[REAGENT:A:1:PLANT:NONE:PLANT_MAT:HERB_VALLEY:PLANT]
[PRODUCT:100:3:DRINK:NONE:PLANT_MAT:POTION_FLUFF:DRINK]
[PRODUCT_TO_CONTAINER:container]
[SKILL:BREWING]
I just need the tags to specify that the milk is coming from [CREATURE:FLUFFBALL]. Within the fluffball's info, the milk is just LOCAL_CREATURE_MAT:MILK, but I don't know how to reference it outside of that for a reaction.