mob
Shinigami_Teacher
icon = 'NPCs.dmi'
name = "{NPC}Shinigami Teacher"
icon_state = "Shinigami"
npc = 1
verb
Talk()
set category = "NPC's"
set src in oview(2)
if(usr.race == "Human")
if(usr.level < 150)
usr << "<b>You are too weak to become a Shinigami, please train some more."
return
switch(input("Do you want to become a powerful Shinigami?", text) in list ("Yes","No"))
if("Yes")
if(usr.talkrace)
return
usr.gotburial = 1
usr.talkrace = 1
usr.cankido = 1
world << "<b><font color = aqua>Race Info: [usr] is now a Shinigami!"
usr.race = "Shinigami"
usr << "<b>Your health got boosted by 500000!"
usr.mhealth += 500000
usr << "<b>Your reiatsu got boosted by 150000!"
usr.mrei += 150000
usr << "<b>Your attack got boosted by 80000!"
usr.mattack += 80000
usr << "<b>Your defence got boosted by 80000!"
usr.mdefence += 80000
usr << "<b>Your reiatsu power got boosted by 20000!"
usr.reiatsu += 20000
var/obj/sword/B = new/obj/sword
B.loc = usr
var/obj/shini/C = new/obj/shini
C.loc = usr
usr.status = "Member"
switch(input("What squad do you want to be in?", text) in list ("One","Two","Three","Four","Five","Six","Seven","Eight","Nine","Ten","Eleven","Twelve","Thirteen"))
if("One")
usr.squad = "One"
if("Two")
usr.squad = "Two"
if("Three")
usr.squad = "Three"
if("Four")
usr.squad = "Four"
if("Five")
usr.squad = "Five"
if("Six")
usr.squad = "Six"
if("Seven")
usr.squad = "Seven"
if("Eight")
usr.squad = "Eight"
if("Nine")
usr.squad = "Nine"
if("Ten")
usr.squad = "Ten"
if("Eleven")
usr.squad = "Eleven"
if("Twelve")
usr.squad = "Twelve"
if("Thirteen")
usr.squad = "Thirteen"
switch(input("What type of fighting do you prefer?", text) in list ("Melee","Long Ranged","Controlling","Using Effects"))
if("Melee")
switch(input("What is your best attribute when fighting?)", text) in list ("Freeze and Kill Your Opponents","Speed and Power","Pure Power","Pure Weapon Power","Blood Blasting","Double Swords","Fire Balls","Water"))
if("Pure Power")
usr.stype = "Zaraki"
if("Pure Weapon Power")
usr.stype = "Ikkaku"
if("Speed and Power")
usr.stype = "Ichigo"
B.icon = 'ichigoshikai(2).dmi'
if("Freeze and Kill Your Opponents")
usr.stype = "Hitsugaya"
if("Blood Blasting")
usr.stype = "Urahara"
usr.bantype = 1
if("Double Swords")
usr.stype = "Shonshui"
usr.bantype = 1
if("Fire Balls")
usr.stype = "Yammamoto"
usr.bantype = 1
if("Ultra Speed")
usr.stype = "Hisagi"
if("Water")
usr.stype = "Kaiens"
if("Long Ranged")
switch(input("What is your best attribute when fighting?)", text) in list ("Skewering Multiple Enemies","Ranged Reiatsu Blasts"))
if("Skewering Multiple Enemies")
usr.stype = "Ichimaru"
usr.bantype = 1
if("Ranged Reiatsu Blasts")
usr.stype = "Hinamori"
usr.bantype = 1
if("Controlling")
switch(input("What is your best attribute when fighting?)", text) in list ("Series of Powerful Strikes","Ripping Your Opponent Apart","Slashing Your Foes With Small Blades"))
if("Series of Powerful Strikes")
usr.stype = "Renji"
if("Slashing Your Foes With Small Blades")
usr.stype = "Jiroubou"
usr.bantype = 1
if("Ripping Your Opponent Apart")
usr.stype = "Byakuya"
if("Using Effects")
switch(input("What is your best attribute when fighting?)", text) in list ("Absorbing Your Enemie's Power","Screwing Your Opponents With Effects","Immobilizing The Enemy","Freezing your Opponent For an Long Time","Freeze and Blind Your Opponents"))
if("Screwing Your Opponents With Effects")
usr.stype = "Mayuri"
if("Immobilizing The Enemy")
usr.stype = "Kira"
usr.bantype = 1
if("Absorbing Your Enemie's Power")
usr.stype = "Yumichika"
usr.bantype = 1
if("Freezing your Opponent For an Long Time")
usr.stype = "Rukia"
if("Freeze and Blind Your Opponents")
usr.stype = "Tousen"
usr.verbs += typesof(/mob/Shinigami/verb)
usr.skill()
Problem description: Just posting this here so I can have something explained 2 me by Pirata.
try that and tell me if it works