示例#1
0
    public static void insertNPCs()
    {
        NPCData npc;

        npc = new NPCData ();
        npc.id = 1;
        npc.name = "Mike Ghole";
        npc.level = 25;
        npc.type = NPCData.creatureType.Human;
        npc.subType = NPCData.creatureSubType.Seller;
        npc.create ();

        npc = new NPCData ();
        npc.id = 2;
        npc.name = "Araña del castillo";
        npc.level = 5;
        npc.type = NPCData.creatureType.Monster;
        npc.subType = NPCData.creatureSubType.Normal;
        npc.isAggresive = true;
        npc.create ();
    }