mob/verb/Attack()
for(var/mob/m in get_step(usr,usr.dir))//this will do all the mob's infront of you when you attack
m.hp -= rand(1,10)
Problem description:
Is there anyway to make m.hp -= rand(1,10) be a random percentage of your current hp? Like it will deal 15%-45% of your current hp?