Added critical damage as a mechanic Maid knife feed deals critical damage, then kills on second time Added concept of treasure room with kitchen Frames now only start at the player when not being looked New attempt at snowglobe animations, it broke though Added concept of indoor weathers LethalConfig compability now changes the color of configs that my presets touch Added jukebox Changed modGUID Removed AC compability Falling into void deals critical damage and teleports, then kills on second time Maid spawns revenant ghost on death
75 lines
2.3 KiB
C#
75 lines
2.3 KiB
C#
using DunGen;
|
|
using ScarletMansion.GamePatch.Managers;
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
|
|
namespace ScarletMansion.GamePatch.Components.TreasureRoom {
|
|
public class TreasureRoomTimedOpen : MonoBehaviour, IDungeonCompleteReceiver {
|
|
|
|
[Header("References")]
|
|
public GameObject timeGameObject;
|
|
public TextMeshPro timeTextMesh;
|
|
|
|
[Header("Values")]
|
|
public Vector2Int hourRange;
|
|
public bool opened;
|
|
private int hourSelected;
|
|
private int mintuesSelected;
|
|
|
|
private ScarletDoor treasureDoorLock;
|
|
|
|
public void Update(){
|
|
if (treasureDoorLock == null) return;
|
|
if (!StartOfRound.Instance.IsHost || opened) return;
|
|
|
|
var time = Utility.GetTime();
|
|
if (time.hours > hourSelected || (time.hours >= hourSelected && time.minutes >= mintuesSelected)) {
|
|
treasureDoorLock.LockDoorOverrideClientRpc(false);
|
|
opened = true;
|
|
|
|
Plugin.logger.LogInfo($"Opening cause {time.hours}:{time.minutes} > {hourSelected}:{mintuesSelected}");
|
|
}
|
|
}
|
|
|
|
public void OnDungeonComplete(Dungeon dungeon) {
|
|
AngerManager.Instance.AddRoomOfInterest(transform);
|
|
|
|
if (!StartOfRound.Instance.IsHost) return;
|
|
|
|
var tile = GetComponentInParent<Tile>();
|
|
var doorways = tile.UsedDoorways;
|
|
foreach(var d in doorways) {
|
|
var neighboorTile = d.ConnectedDoorway.Tile.gameObject.name.ToLowerInvariant();
|
|
//Plugin.logger.LogInfo(neighboorTile);
|
|
if (neighboorTile.Contains("treasure")){
|
|
StartCoroutine(BeginTreasureRoomProcess(d));
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
public IEnumerator BeginTreasureRoomProcess(Doorway doorway){
|
|
yield return new WaitForSecondsRealtime(4f);
|
|
|
|
Plugin.logger.LogInfo("Setting up lock for treasure room");
|
|
|
|
treasureDoorLock = AngerManager.Instance.GetScarletDoor(doorway.transform.position);
|
|
treasureDoorLock.LockDoorOverrideClientRpc(true);
|
|
|
|
hourSelected = UnityEngine.Random.Range(hourRange.x, hourRange.y);
|
|
mintuesSelected = UnityEngine.Random.Range(0, 3) * 15;
|
|
|
|
timeGameObject.SetActive(true);
|
|
timeTextMesh.text = $"{hourSelected}:{mintuesSelected}";
|
|
|
|
Plugin.logger.LogInfo($"Opening at {hourSelected}:{mintuesSelected}");
|
|
}
|
|
}
|
|
}
|