[quote=“ShinQuickMan, post:45, topic:6274”]( to the topic in general)
Right…
So, anyone have any recommended text-swaps for this obnoxious item? I think “Jacuzzi Kit” might work for me assuming there were some way to make it work only when in water.[/quote]
Make a mod and paste the flashlight raws with the same item Id, its what I do to get something useful from all those mutagens I will never use. In the end it looks like this:
[tt] {
“id”: “mutagen”, <- Mutagen before, now a flashlight.
“type”: “TOOL”, <- the rest is the flashlight jsons copypasted
"symbol": “;”,
“color”: “blue”,
“name”: “flashlight (off)”,
“name_plural”: “flashlights (off)”,
“description”: “This is a heavy duty LED flashlight. Using this flashlight will turn it on and provide light, assuming it is charged with batteries.”,
“price”: 38000,
“material”: [“plastic”, “aluminum”],
“weight”: 400,
“volume”: 2,
“bashing”: 1,
“cutting”: 0,
“to_hit”: 2,
“max_charges”: 100,
“initial_charges”: 100,
“charges_per_use”: 1,
“turns_per_charge”: 0,
“ammo”: “battery”,
“revert_to”: “null”,
“use_action”: {
“type”: “transform”,
“msg”: “You turn the flashlight on.”,
“target”: “flashlight_on”,
“active”: true,
“need_charges”: 1,
“need_charges_msg”: “The flashlights batteries are dead.”
}
},
[/tt]