コード例 #1
0
ファイル: PlayerCharacter.cs プロジェクト: r-diggz/GalaMud
        public override void OnDeath()
        {
            Roomates = new MudCharacter[0];
            NotifyPlayer("****You have died and will be sent back to the begining****");
            DungeonRoom r = Dungeon.GetRoom(Dungeon.StartingRoom);

            HitPoints = MaxHitPoints;
            r.AddCharacter(this);
        }