# A wearable towel

**URL:** https://discourse.cataclysmdda.org/t/a-wearable-towel/5900
**Category:** The Lab
**Created:** [April 20, 2014, 8:45am UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900 "2014-04-20T08:45:06Z")
**Posts on this page:** 20
**Page:** 1

<div class="post-metadata">

### Author: ![Weyrling](https://avatars.discourse-cdn.com/v4/letter/w/7bcc69/32.png) [@Weyrling](https://discourse.cataclysmdda.org/u/Weyrling)
#### Post date: [April 20, 2014, 8:45am UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/1 "2014-04-20T08:45:06Z")

</div>

For having a reference to Hitchhiker’s Guide to the Galaxy, the towel has remarkably few uses, I decided to make it wearable like a bandana/scarf.  
The stats I’ve used are entirely impulsive but I figured I’d post the changes I made to get it to work here if anybody wanted to do a PR for a more realistic version.

I’ve not yet done anything in Github at all and I’ve sort of polluted my personal version with a ton of random changes, so I’ve posted this here for lack of knowing what else to do with it.

EDIT: I’ve changed it so the towel has a menu, you can use it to dry off, wear it on the head, mouth, or torso, the values are still a bit arbitrary at the moment if anybody has some suggestions.  
A quick test after compiling it seems to have no issues, but I didn’t really do any rigorous testing.

I’ll look into making it work as improvised bedding and see if I can figure out how to do a PR on github, some advice in that direction would be helpful.

[spoiler=player.cpp]Starting at line 6413 I replaced the code with this:  
if(it-\>type-\>id == “towel\_wet”)  
it-\>make(itypes[“towel”]);  
if(it-\>type-\>id == “towel\_wet\_head”)  
it-\>make(itypes[“towel\_head”]);  
if(it-\>type-\>id == “towel\_wet\_torso”)  
it-\>make(itypes[“towel\_torso”]);

Inserted the following into a newline at 8775:  
used-\>type-\>use == &iuse::towel ||  
[/spoiler]

int iuse::towel(player \*p, item \*it, bool)  
{  
bool towelUsed = false;  
int choice = -1;  
int pos = p-\>get\_item\_position(it);  
item& ait = p-\>i\_at(pos);  
choice = menu(true, \_(“Do what with the towel?:”), \_(“Dry Off”), \_(“Wear on Head”), \_(“Wear over Mouth”), \_(“Wear on Torso”), \_(“Use as bedding”), \_(“Cancel”), NULL);

```
if( choice < 0 || choice == 6){
    g->add_msg_if_player(p, _("Never mind."));
    return 0;
}
else if(choice == 1)
    // can't use an already wet towel!
    if( it->has_flag("WET") ) {
        g->add_msg_if_player(p,_("That %s is too wet to soak up any more liquid!"), it->name.c_str());
    }
    // dry off from being wet
    else if( abs(p->has_morale(MORALE_WET)) ){
        p->rem_morale(MORALE_WET);
        g->add_msg_if_player(p,_("You use the %s to dry off, saturating it with water!"), it->name.c_str());
        towelUsed = true;
        it->item_counter = 300;
    }
    // clean off slime
    else if( p->has_disease("slimed") ){
        p->rem_disease("slimed");
        g->add_msg_if_player(p,_("You use the %s to clean yourself off, saturating it with slime!"), it->name.c_str());
        towelUsed = true;
        it->item_counter = 450; // slime takes a bit longer to dry
    }
    // default message
    else {
        g->add_msg_if_player(p,_("You are already dry, the %s does nothing."), it->name.c_str());
    }
else if(choice == 2){
    if(it->type->id == "towel" || "towel_torso"){
        it->make(itypes["towel_head"]);
        p->inv.assign_empty_invlet(ait,true);
        if(!(p->is_wearing("towel_head"))){
            p->wear(pos);
        }
        towelUsed = true;
    }
    else if(it->type->id == "towel_wet" || "towel_torso_wet"){
        it->make(itypes["towel_head_wet"]);
        p->inv.assign_empty_invlet(ait,true);
        if(!(p->is_wearing("towel_head"))){
            p->wear(pos);
        }
        towelUsed = true;
    }
    else if(it->type->id == "towel_head" || "towel_wet_head"){
        p->inv.assign_empty_invlet(ait,true);
        if(!(p->is_wearing("towel_head") || p->is_wearing("towel_wet_head"))){
            p->wear(pos);
        }
        towelUsed = true;
    }
    else
        return 0;
}
else if(choice == 3){
    if(it->type->id == "towel_head" || "towel_torso"){
        it->make(itypes["towel"]);
        p->inv.assign_empty_invlet(ait,true);
        if(!(p->is_wearing("towel"))){
            p->wear(pos);
        }
        towelUsed = true;
    }
    else if(it->type->id == "towel_wet_head" || "towel_wet_torso"){
        it->make(itypes["towel_wet"]);
        p->inv.assign_empty_invlet(ait,true);
        if(!(p->is_wearing("towel_wet"))){
            p->wear(pos);
        }
        towelUsed = true;
    }
    else if(it->type->id == "towel" || "towel_wet"){
        p->inv.assign_empty_invlet(ait,true);
        if(!(p->is_wearing("towel") || p->is_wearing("towel_wet"))){
            p->wear(pos);
        }
        towelUsed = true;
    }
    else
        return 0;
}
else if(choice == 4){
    if(it->type->id == "towel" || "towel_head"){
        it->make(itypes["towel_torso"]);
        p->inv.assign_empty_invlet(ait,true);
        if(!(p->is_wearing("towel_torso"))){
            p->wear(pos);
        }
        towelUsed = true;
    }
    else if(it->type->id == "towel_wet" || "towel_wet_head"){
        it->make(itypes["towel_wet_torso"]);
        p->inv.assign_empty_invlet(ait,true);
        if(!(p->is_wearing("towel_torso") || p->is_wearing("towel_wet_torso"))){
            p->wear(pos);
        }
        towelUsed = true;
    }
    else if(it->type->id == "towel_torso" || "towel_wet_torso"){
        p->inv.assign_empty_invlet(ait,true);
        if(!(p->is_wearing("towel_torso"))){
            p->wear(pos);
        }
        towelUsed = true;
    }
    else
        return 0;
}
else if(choice == 5){
    g->add_msg_if_player(p,_("Not Yet Available"));
    return 0;
}
else
    g->add_msg_if_player(p,_("What have you done??"));

// towel was used
if(towelUsed)
{
    p->moves -= 50;
    // change "towel" to a "towel_wet" (different flavor text/color)
    if(it->type->id == "towel")
        it->make(itypes["towel_wet"]);
    else if(it->type->id == "towel_head")
        it->make(itypes["towel_wet_head"]);
    else if(it->type->id == "towel_torso")
        it->make(itypes["towel_wet_torso"]);
    // WET, active items have their timer decremented every turn
    it->item_tags.erase("ABSORBENT");
    it->item_tags.insert("WET");
    it->active = true;
}
return it->type->charges_to_use();

```

}

In data/json/items/, I removed the towel from tools.json and added the following to tool\_armor.json:  
{  
“type” : “ARMOR”,  
“id” : “towel”,  
“name” : “towel”,  
“weight” : 370,  
“volume” : 2,  
“price” : 4500,  
“symbol” : “,”,  
“color” : “cyan”,  
“description” : “This is a fluffy and large towel. It could be used to dry yourself. Any person that can travel the length and breadth of the apocalypse, rough it, slum it, struggle against terrible odds, win through and still know where their towel is, is clearly a force to be reckoned with.”,  
“to\_hit” : -1,  
“storage” : 0,  
“material” : “cotton”,  
“covers” : [“MOUTH”],  
“coverage” : 95,  
“enviromental\_protection” : 2,  
“cutting” : 0,  
“bashing” : 0,  
“warmth” : 10,  
“phase” : “solid”,  
“encumbrance” : 1,  
“material\_thickness” : 1,  
“flags” : [“ABSORBENT”],  
“max\_charge” : 0,  
“charges\_per\_use” : 0,  
“turns\_per\_charge” : 5,  
“ammo” : “NULL”,  
“revert\_to” : “NULL”,  
“use\_action” : “TOWEL”  
},  
{  
“type” : “ARMOR”,  
“id” : “towel\_head”,  
“name” : “towel”,  
“weight” : 370,  
“volume” : 2,  
“price” : 4500,  
“symbol” : “,”,  
“color” : “cyan”,  
“description” : “This is a fluffy and large towel. It could be used to dry yourself. Any person that can travel the length and breadth of the apocalypse, rough it, slum it, struggle against terrible odds, win through and still know where their towel is, is clearly a force to be reckoned with.”,  
“to\_hit” : -1,  
“storage” : 0,  
“material” : “cotton”,  
“covers” : [“HEAD”],  
“coverage” : 80,  
“enviromental\_protection” : 0,  
“cutting” : 0,  
“bashing” : 0,  
“warmth” : 10,  
“phase” : “solid”,  
“encumbrance” : 1,  
“material\_thickness” : 1,  
“flags” : [“ABSORBENT”],  
“max\_charge” : 0,  
“charges\_per\_use” : 0,  
“turns\_per\_charge” : 5,  
“ammo” : “NULL”,  
“revert\_to” : “NULL”,  
“use\_action” : “TOWEL”  
},  
{  
“type” : “ARMOR”,  
“id” : “towel\_torso”,  
“name” : “towel”,  
“weight” : 370,  
“volume” : 2,  
“price” : 4500,  
“symbol” : “,”,  
“color” : “cyan”,  
“description” : “This is a fluffy and large towel. It could be used to dry yourself. Any person that can travel the length and breadth of the apocalypse, rough it, slum it, struggle against terrible odds, win through and still know where their towel is, is clearly a force to be reckoned with.”,  
“to\_hit” : -1,  
“storage” : 0,  
“material” : “cotton”,  
“covers” : [“TORSO”],  
“coverage” : 55,  
“enviromental\_protection” : 0,  
“cutting” : 0,  
“bashing” : 0,  
“warmth” : 10,  
“phase” : “solid”,  
“encumbrance” : 1,  
“material\_thickness” : 1,  
“flags” : [“ABSORBENT”],  
“max\_charge” : 0,  
“charges\_per\_use” : 0,  
“turns\_per\_charge” : 5,  
“ammo” : “NULL”,  
“revert\_to” : “NULL”,  
“use\_action” : “TOWEL”  
},  
{  
“type” : “ARMOR”,  
“id” : “towel\_wet”,  
“name” : “towel”,  
“weight” : 400,  
“volume” : 2,  
“price” : 4500,  
“symbol” : “,”,  
“color” : “blue”,  
“description” : “This is a large, sopping wet towel. If you wait a little bit, it should dry out. Don’t panic.”,  
“to\_hit” : 1,  
“storage” : 0,  
“material” : “cotton”,  
“covers” : [“MOUTH”],  
“coverage” : 95,  
“enviromental\_protection” : 0,  
“cutting” : 0,  
“bashing” : 0,  
“warmth” : 0,  
“phase” : “solid”,  
“encumbrance” : 1,  
“material\_thickness” : 1,  
“flags” : [“WET”],  
“max\_charge” : 0,  
“charges\_per\_use” : 0,  
“turns\_per\_charge” : 5,  
“ammo” : “NULL”,  
“revert\_to” : “NULL”,  
“use\_action” : “TOWEL”  
},  
{  
“type” : “ARMOR”,  
“id” : “towel\_wet\_head”,  
“name” : “towel”,  
“weight” : 400,  
“volume” : 2,  
“price” : 4500,  
“symbol” : “,”,  
“color” : “blue”,  
“description” : “This is a large, sopping wet towel. If you wait a little bit, it should dry out. Don’t panic.”,  
“to\_hit” : 1,  
“storage” : 0,  
“material” : “cotton”,  
“covers” : [“HEAD”],  
“coverage” : 80,  
“enviromental\_protection” : 0,  
“cutting” : 0,  
“bashing” : 0,  
“warmth” : 0,  
“phase” : “solid”,  
“encumbrance” : 1,  
“material\_thickness” : 1,  
“flags” : [“WET”],  
“max\_charge” : 0,  
“charges\_per\_use” : 0,  
“turns\_per\_charge” : 5,  
“ammo” : “NULL”,  
“revert\_to” : “NULL”,  
“use\_action” : “TOWEL”  
},  
{  
“type” : “ARMOR”,  
“id” : “towel\_wet\_torso”,  
“name” : “towel”,  
“weight” : 400,  
“volume” : 2,  
“price” : 4500,  
“symbol” : “,”,  
“color” : “blue”,  
“description” : “This is a large, sopping wet towel. If you wait a little bit, it should dry out. Don’t panic.”,  
“to\_hit” : 1,  
“storage” : 0,  
“material” : “cotton”,  
“covers” : [“TORSO”],  
“coverage” : 55,  
“enviromental\_protection” : 0,  
“cutting” : 0,  
“bashing” : 0,  
“warmth” : 0,  
“phase” : “solid”,  
“encumbrance” : 1,  
“material\_thickness” : 1,  
“flags” : [“WET”],  
“max\_charge” : 0,  
“charges\_per\_use” : 0,  
“turns\_per\_charge” : 5,  
“ammo” : “NULL”,  
“revert\_to” : “NULL”,  
“use\_action” : “TOWEL”  
},

---

<div class="post-metadata">

### Author: ![i2amroy](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/i2amroy/32/909_2.png) [@i2amroy](https://discourse.cataclysmdda.org/u/i2amroy)
#### Post date: [April 20, 2014, 7:08pm UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/2 "2014-04-20T19:08:17Z")

</div>

You would probably want to move it into the tool\_armor class as well then, instead of the armor one.

---

<div class="post-metadata">

### Author: ![Weyrling](https://avatars.discourse-cdn.com/v4/letter/w/7bcc69/32.png) [@Weyrling](https://discourse.cataclysmdda.org/u/Weyrling)
#### Post date: [April 20, 2014, 9:20pm UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/3 "2014-04-20T21:20:10Z")

</div>

You’re probably right, I used the weapon-sheathing equipment as a guideline, and those are all in the armor.json for some reason.

---

<div class="post-metadata">

### Author: ![Tawarochir](https://avatars.discourse-cdn.com/v4/letter/t/c0e974/32.png) [@Tawarochir](https://discourse.cataclysmdda.org/u/Tawarochir)
#### Post date: [April 20, 2014, 10:37pm UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/4 "2014-04-20T22:37:06Z")

</div>

Would it be possible to combine knife multiple 'a’pplication code and rollmat moving bed code to be able to wear it, dry off with it, and use it as a really really cruddy bed?

---

<div class="post-metadata">

### Author: ![StopSignal](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/stopsignal/32/1923_2.png) [@StopSignal](https://discourse.cataclysmdda.org/u/StopSignal)
#### Post date: [April 20, 2014, 10:44pm UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/5 "2014-04-20T22:44:42Z")

</div>

> [@Tawarochir](#):
>
> Would it be possible to combine knife multiple 'a’pplication code and rollmat moving bed code to be able to wear it, dry off with it, and use it as a really really cruddy bed?

---

<div class="post-metadata">

### Author: ![Ice-o-metric](https://avatars.discourse-cdn.com/v4/letter/i/e95f7d/32.png) [@Ice-o-metric](https://discourse.cataclysmdda.org/u/Ice-o-metric)
#### Post date: [April 21, 2014, 12:25am UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/6 "2014-04-21T00:25:52Z")

</div>

A good idea, but I figured it would be the kind of thing you’d wrap around your torso (give the shower victim profession SOME survivability :-P) and might be worth it in a tight spot for the warmth

---

<div class="post-metadata">

### Author: ![Weyrling](https://avatars.discourse-cdn.com/v4/letter/w/7bcc69/32.png) [@Weyrling](https://discourse.cataclysmdda.org/u/Weyrling)
#### Post date: [April 21, 2014, 11:55pm UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/7 "2014-04-21T23:55:38Z")

</div>

It might take a bit of time, I figure you should be able to wear it as a hat or toga as well as over the mouth, using it as a bed might take a bit more work as I haven’t done anything with traps yet.

In the meanwhile, what else could a towel be used for?

---

<div class="post-metadata">

### Author: ![Blackopsman9999](https://avatars.discourse-cdn.com/v4/letter/b/8797f3/32.png) [@Blackopsman9999](https://discourse.cataclysmdda.org/u/Blackopsman9999)
#### Post date: [April 22, 2014, 2:01am UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/8 "2014-04-22T02:01:50Z")

</div>

towel fighting style for towels?

---

<div class="post-metadata">

### Author: ![Weyrling](https://avatars.discourse-cdn.com/v4/letter/w/7bcc69/32.png) [@Weyrling](https://discourse.cataclysmdda.org/u/Weyrling)
#### Post date: [April 22, 2014, 3:26am UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/9 "2014-04-22T03:26:57Z")

</div>

I’ve updated the original post with the first set of changes, I’ll work on how to get it to work as improvised bedding some other time, anybody have a link to a tutorial on how to use github or should I just start flailing about the internet on my own?

---

<div class="post-metadata">

### Author: ![KA101](https://avatars.discourse-cdn.com/v4/letter/k/278dde/32.png) [@KA101](https://discourse.cataclysmdda.org/u/KA101)
#### Post date: [April 22, 2014, 4:38am UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/10 "2014-04-22T04:38:10Z")

</div>

> [@Weyrling](#):
>
> I’ve updated the original post with the first set of changes, I’ll work on how to get it to work as improvised bedding some other time, anybody have a link to a tutorial on how to use github or should I just start flailing about the internet on my own?

Github has a startup walkthrough on [github.com](http://github.com). It’s OK but feel free to ask on the IRC if you’ve specific questions.

[The DDA starter page](https://github.com/CleverRaven/Cataclysm-DDA/blob/master/CONTRIBUTING.md) has some specific guidance. In particular, we really do use that “upstream” thing, and jump back to your master and make a new branch for each set of changes. (In general, if you want to do a lot of things that all hit the same file, do them in the same PR. That way we don’t have to manually reconcile your work with itself.)

---

<div class="post-metadata">

### Author: ![antofdeath](https://avatars.discourse-cdn.com/v4/letter/a/cc9497/32.png) [@antofdeath](https://discourse.cataclysmdda.org/u/antofdeath)
#### Post date: [April 22, 2014, 5:46am UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/11 "2014-04-22T05:46:12Z")

</div>

Because watching the show arrow, and random ninjas descending on ropes. I suggest that towels should also double as “Long ropes” for falling down pits.

---

<div class="post-metadata">

### Author: ![Jakers](https://avatars.discourse-cdn.com/v4/letter/j/3ab097/32.png) [@Jakers](https://discourse.cataclysmdda.org/u/Jakers)
#### Post date: [April 22, 2014, 3:11pm UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/12 "2014-04-22T15:11:29Z")

</div>

Anyone else wear their towel like a cape after you’re drying off from a shower and pretend you’re a ninja? No? Okay…]  
But perhaps make a towel-cape from 1 towel and a nail to hold it together. Because you can superhero.

---

<div class="post-metadata">

### Author: ![KA101](https://avatars.discourse-cdn.com/v4/letter/k/278dde/32.png) [@KA101](https://discourse.cataclysmdda.org/u/KA101)
#### Post date: [April 23, 2014, 1:46am UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/13 "2014-04-23T01:46:16Z")

</div>

> [@antofdeath](#):
>
> Because watching the show arrow, and random ninjas descending on ropes. I suggest that towels should also double as “Long ropes” for falling down pits.

Nowhere near 30 feet long. Nope.

As for towel capes, why? You can make an actual cloak in-game! 😃

---

<div class="post-metadata">

### Author: ![FunsizeNinja123](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/funsizeninja123/32/118_2.png) [@FunsizeNinja123](https://discourse.cataclysmdda.org/u/FunsizeNinja123)
#### Post date: [April 23, 2014, 1:57am UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/14 "2014-04-23T01:57:49Z")

</div>

Someone said Ninja?

---

<div class="post-metadata">

### Author: ![KA101](https://avatars.discourse-cdn.com/v4/letter/k/278dde/32.png) [@KA101](https://discourse.cataclysmdda.org/u/KA101)
#### Post date: [April 23, 2014, 3:01am UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/15 "2014-04-23T03:01:02Z")

</div>

Yeah, making towels a less-effective rollmat is also a good call.  
[hr]

> [@FunsizeNinja123](#):
>
> Someone said Ninja?

[size=24pt]!

KA101 makes a radio call

The Ninja! He’s here! Send reinforcements!

Towel-equipped capture teams flood the room…

---

<div class="post-metadata">

### Author: ![Zaweri\_Runewright](https://avatars.discourse-cdn.com/v4/letter/z/5e9695/32.png) [@Zaweri\_Runewright](https://discourse.cataclysmdda.org/u/Zaweri_Runewright)
#### Post date: [April 23, 2014, 5:00am UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/16 "2014-04-23T05:00:49Z")

</div>

TOWEL ROPE!

---

<div class="post-metadata">

### Author: ![Zireael](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/zireael/32/956_2.png) [@Zireael](https://discourse.cataclysmdda.org/u/Zireael)
#### Post date: [April 23, 2014, 10:55am UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/17 "2014-04-23T10:55:55Z")

</div>

Love the idea!

---

<div class="post-metadata">

### Author: ![detahramet](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/detahramet/32/58_2.png) [@detahramet](https://discourse.cataclysmdda.org/u/detahramet)
#### Post date: [April 23, 2014, 1:06pm UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/18 "2014-04-23T13:06:00Z")

</div>

actually, if the towel was wet, perhaps it could have a negative bonus to heat retention, making you feel cooler.  
Equip it while dry and you stay a little warm.  
Equip it while wet, and you feel a little cooler while in the god-awful heat of the summer.

---

<div class="post-metadata">

### Author: ![FunsizeNinja123](https://sea2.discourse-cdn.com/flex016/user_avatar/discourse.cataclysmdda.org/funsizeninja123/32/118_2.png) [@FunsizeNinja123](https://discourse.cataclysmdda.org/u/FunsizeNinja123)
#### Post date: [April 23, 2014, 1:12pm UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/19 "2014-04-23T13:12:01Z")

</div>

> [@KA101](#):
>
> Yeah, making towels a less-effective rollmat is also a good call.

Doesn’t putting clothes on the floor already do this?

> [@KA101](#):
>
> [quote=“FunsizeNinja123, post:14, topic:5900”]Someone said Ninja?

[size=24pt]!

KA101 makes a radio call

The Ninja! He’s here! Send reinforcements!

Towel-equipped capture teams flood the room…[/quote]

_Teleports away laughing_

---

<div class="post-metadata">

### Author: ![Jakers](https://avatars.discourse-cdn.com/v4/letter/j/3ab097/32.png) [@Jakers](https://discourse.cataclysmdda.org/u/Jakers)
#### Post date: [April 23, 2014, 5:22pm UTC](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900/20 "2014-04-23T17:22:39Z")

</div>

> [@KA101](#):
>
> [quote=“antofdeath, post:11, topic:5900”]Because watching the show arrow, and random ninjas descending on ropes. I suggest that towels should also double as “Long ropes” for falling down pits.

Nowhere near 30 feet long. Nope.

As for towel capes, why? You can make an actual cloak in-game! :-D[/quote]

Although it isn’t the most intelligent of ideas; it would save time resources. However, you would look like a complete prat, and it wouldn’t be as good as a proper cloak (obviously.) I’m just all for adding more crude styled early game items into the game. Screw it, I might just learn how to make mods x)

Also, I’m all for towel fighting styles. Because SWEET MOTHER OF PEARL it hurts when someone whips you with a towel correctly. Who knows, we could have the next Indiana Jones with his towel-cape, towel-rope and trusty towel-whip. F\*\*k it lets make everything with towels.

[Next page](https://discourse.cataclysmdda.org/t/a-wearable-towel/5900.md?page=2)
