//Fireball
mob
verb
new Fireball(usr.loc)//create fireball at users location
Move(North)//move north
if Bump(mob/M)//if it bumps a mob
del Fireball//delete
obj
Fireball
icon = 'Fireball.dmi'
icon_state = "small_fireball"
this projectile is supposed to mvoe north and if it hits a mob it deletes, is this the proper way of doing this