Added new treasure room spawn (servant's quarters)

Fixed treasure room event for bedroom
Fixed painting's interaction with MattyFixes
Fixed critical damage bug introduced by v62
Increased lights spawn for all presets by a lot
Added Coroner compatibility
Added Scarlet Devil Mansion (moon) to the interior's spawn list
Lights now have a chance of flickering and dying
This commit is contained in:
LadyAliceMargatroid 2024-09-01 18:45:16 -07:00
parent 93e249d838
commit 4413d12ea3
42 changed files with 986 additions and 333 deletions

View file

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ScarletMansion.GamePatch.Components {
public interface IScarletSelfDestroy {
float Chance { get; }
bool IsDestroyed { get; }
void PreDestroy();
void Destroy();
}
}