obj
Item
Starters
Bulbasaur
icon = 'Pokeballs.dmi'
icon_state = "Pokeball"
verb
Grab_Starter()
set src in oview(1)
usr<<"You grabbed [src]"
usr.Team.Add(/mob/Pokemon/P001)
mob
var
Team[6]
mob
Stat()
statpanel("Inventory",contents)
stat("Team",Team)
mob
verb
Release()
for(var/mob/M in usr.Team)
new M
M.loc = usr.loc
Problem description:The Pokemon doesn't appear in the statpanel when I grab it, and when I hit Release, it doesn't spawn at my location.