Initial Commit
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
using System.Collections.Generic;
|
||||
using Easter2025.Customs.Generics;
|
||||
using Easter2025.Utilies;
|
||||
using Kitchen;
|
||||
using KitchenData;
|
||||
using KitchenLib.Utils;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Easter2025.Customs.ItemGroups
|
||||
{
|
||||
public class BlueDevilledEgg : GenericStackableItemGroup
|
||||
{
|
||||
public override string UniqueNameID => "BlueDevilledEgg";
|
||||
public override GameObject Prefab => Mod.Bundle.LoadAsset<GameObject>("BlueDevilledEgg").AssignMaterialsByNames();
|
||||
public override bool IsMergeableSide => true;
|
||||
|
||||
public override List<ItemGroup.ItemSet> Sets => new()
|
||||
{
|
||||
new ItemGroup.ItemSet
|
||||
{
|
||||
Items = new List<Item>
|
||||
{
|
||||
GDOReferences.BlueDeYolkedSlicedEgg,
|
||||
GDOReferences.MixedEggYolk
|
||||
},
|
||||
Min = 2,
|
||||
Max = 2
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user