Beispiel #1
0
        public static void Add(string name, int id, string quote, Mod mod = null)
        {
            if (mod == null)
            {
                mod = ModLoader.GetMod("Fargowiltas");
            }

            CaughtNPCItem item = new CaughtNPCItem(name, id, quote);

            mod.AddContent(item);
            CaughtTownies.Add(id, item.Type);
        }