Changeset 6420 for 2015


Ignore:
Timestamp:
2015-06-26 05:04:04 (8 years ago)
Author:
mijoliim
Message:
 
Location:
2015/26/MikkoL/JRPG
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • 2015/26/MikkoL/JRPG/JRPG/JRPG/Battle/EnemyBase/EnemyList.cs

    r6415 r6420  
    6060    } 
    6161 
     62    public static EnemyBase Tele(int num) 
     63    { 
     64        EnemyBase Tele = new EnemyBase(); 
     65 
     66        Tele.Stats.HP = 60; 
     67        Tele.Stats.Def = 5; 
     68        Tele.Stats.Res = 5; 
     69        Tele.Stats.Str = 5; 
     70 
     71         
     72        Tele.FleePercent = 25; 
     73         
     74        if (T 
     75 
     76        Tele.BaseWaitTimeInSeconds = 6; 
     77 
     78        Tele.Attacks.Add(AttackList.SpookyAttack()); 
     79 
     80        return Tele; 
     81    } 
     82 
    6283    public static EnemyBase Spookt() 
    6384    { 
Note: See TracChangeset for help on using the changeset viewer.