#define DEBUG
world
mob=/mob/Player/
mob/Player/Login()
mob/pokemon/pikachu
icon = 'Pikachu.dmi'
mob/var
list/pokemon=list(new/mob/pokemon/pikachu)
mob/pokemon/var
Level = 0
list/Attacks=list("E")
Attacks/proc
Tech(mob/A)
for(var/mob/pokemon/b in A.pokemon)
if(istype(b, /mob/pokemon/pikachu/))
if(b.Level == 5)
src.Learn(b,"Tackle",A)
Learn(mob/pokemon/a,attack,owner)
world << "debug"
owner << "[a] learned [attack]"
a.Attacks+=attack
mob/verb/Lol()
new/Attacks(src)
Attacks/
New(mob/A)
world << "Test 1 (Calling New): Passed"
for(var/mob/pokemon/b in A.pokemon)
world << "Test 2 (Looping for Pokemon in A.pokemon): Passed"
if(istype(b, /mob/pokemon/pikachu/))
world << "Test 3: (If b is a Pikachu): Passed"
if(b.Level == 5)
world << "Test 4: (If Level is 5): Passed"
src.Learn(b,"Tackle",A)
Learn(mob/pokemon/a,attack,owner)
world << "debug"
owner << "[a] learned [attack]"
a.Attacks+=attack
Problem description: In Attacks New() it just goes to Part 1. o.O