Added treasure rooms
Added keyslot compatibility Frames look at when you look away Fixed snow globes
This commit is contained in:
parent
056cac8df1
commit
e9152782aa
23 changed files with 530 additions and 87 deletions
|
|
@ -0,0 +1,18 @@
|
|||
using DunGen;
|
||||
using ScarletMansion.GamePatch.Props;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ScarletMansion.GamePatch.FixValues
|
||||
{
|
||||
public class FixTreasureRoom : FixBaseClass<LocalPropSetBasic> {
|
||||
public void Awake(){
|
||||
var loot = PluginConfig.Instance.treasureRoomLootValue;
|
||||
target.propCount = new IntRange(loot.min, loot.max);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue