Exemplo n.º 1
0
        public static void RegisterLootTables(this GameData data, ModResources resources)
        {
            var lootTables = resources.LoadAllAssets <LootTable>();

            foreach (var table in lootTables)
            {
                var orig = data.LootTables.FirstOrDefault(x => x.guid == table.guid);
                if (orig == null)
                {
                    data.LootTables.Add(table);
                }
                else
                {
                    if (table.Replace)
                    {
                        orig.Loot.Clear();
                    }
                    orig.Loot.AddRange(table.Loot);
                }
            }
        }
Exemplo n.º 2
0
        public static void RegisterItems(this GameData data, ModResources resources)
        {
            var items             = resources.LoadAllAssets <ItemData>();
            var defaultUnlocked   = data.GetField <List <string> >("mDefaultUnlocked");
            var defaultDiscovered = data.GetField <List <string> >("mDefaultDiscovered");

            foreach (var item in items)
            {
                data.Items.Add(item);

                if ((item.Hint & ItemData.ItemHint.Relic) != 0)
                {
                    data.RelicCollection.Add(item);
                }
                if ((item.Hint & ItemData.ItemHint.Curse) != 0)
                {
                    data.CurseCollection.Add(item);
                }
                if ((item.Hint & ItemData.ItemHint.Blessing) != 0)
                {
                    data.BlessingCollection.Add(item);
                }
                if ((item.Hint & ItemData.ItemHint.Familiar) != 0)
                {
                    data.FamiliarCollection.Add(item);
                }
                if ((item.Hint & ItemData.ItemHint.Misc) != 0)
                {
                    data.MiscCollection.Add(item);
                }
                if ((item.Hint & ItemData.ItemHint.Potion) != 0)
                {
                    data.PotionCollection.Add(item);
                }
                if ((item.Hint & ItemData.ItemHint.Health) != 0)
                {
                    data.HexCollection.Add(item);
                }
                if ((item.Hint & ItemData.ItemHint.Resource) != 0)
                {
                    data.ResourceItemCollection.Add(item);
                }
                if ((item.Hint & ItemData.ItemHint.Artifact) != 0)
                {
                    data.ArtifactCollection.Add(item);
                }
                if ((item.Hint & ItemData.ItemHint.Skin) != 0)
                {
                    data.SkinCollection.Add(item);
                }

                if (item.IsDefault)
                {
                    defaultUnlocked.Add(item.guid);
                }
                if (item.IsDefaultDiscovered)
                {
                    defaultDiscovered.Add(item.guid);
                }
            }
        }
Exemplo n.º 3
0
        public static void RegisterPopups(this GameData data, ModResources resources)
        {
            var popups = resources.LoadAllAssets <Popup>();

            data.Popups.AddRange(popups);
        }