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
40 lines
954 B
C#
40 lines
954 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using UnityEngine;
|
|
using DunGen;
|
|
|
|
namespace ScarletMansion.GamePatch.Props {
|
|
public class RandomPrefabBasic : RandomPrefabBase {
|
|
|
|
public override void Process(RandomStream randomStream, Tile tile) {
|
|
if (props.Count <= 0) return;
|
|
|
|
var value = randomStream.Next(props.Count);
|
|
var prefab = props[value];
|
|
|
|
SpawnGameObject(randomStream, prefab);
|
|
}
|
|
|
|
public void ProcessIndex(RandomStream randomStream, int index){
|
|
if (index >= props.Count) return;
|
|
var prefab = props[index];
|
|
|
|
SpawnGameObject(randomStream, prefab);
|
|
}
|
|
|
|
public void ProcessSkipCount(RandomStream randomStream, int count){
|
|
if (count >= props.Count) return;
|
|
|
|
var index = randomStream.Next(count, props.Count);
|
|
var prefab = props[index];
|
|
|
|
SpawnGameObject(randomStream, prefab);
|
|
}
|
|
|
|
}
|
|
|
|
}
|