blob: 44dbbac8c542f9a92c3b29deb28c5c681b6f7f8b (
plain) (
tree)
|
|
function|script|useScissors
{
if (rand(3))
goto L_Change;
message strcharinfo(0), "Whoops!";
heal -20 - rand(Hp >> 1), 0;
getitem "Scissors", 1;
end;
L_Change:
setlook LOOK_HAIR_STYLE, rand(20);
getitem "Scissors", 1;
end;
}
|