예제 #1
0
    public void CreateEnemies()
    {
        LoopRound current = GM.enemy_attack.current_loop_round;

        for (int i = 0; i < current.enemy_number; i++)
        {
            CreateEnemy(i, current.hand_hp, current.head_hp);
        }
        ShowHideHeadHP();
    }
예제 #2
0
    public void Initialize()
    {
        LoopRound.InitializeStatic();

        List <LoopRound> rq = new List <LoopRound>()
        {
            new LoopRound(2, 2, new IntRange(5, 7), 1, 1, 5),
            new LoopRound(3, 2, new IntRange(4, 6), 2, 3, 6),
            new LoopRound(4, 3, new IntRange(3, 5), 3, 4, 7),
            new LoopRound(5, 4, new IntRange(2, 5), 4, 4, 7),
            new LoopRound(6, 5, new IntRange(1, 3), 5, 6, 10),
        };

        rounds = new Queue <LoopRound>(rq);
    }