From e6181c24124d97f2fbc932b8a68311e625463156 Mon Sep 17 00:00:00 2001 From: uzvkl Date: Tue, 11 Jun 2019 23:05:52 +0200 Subject: Move dsa related stuff to subfolder --- dsa/DSALib/Commands/NpcCommands.cs | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 dsa/DSALib/Commands/NpcCommands.cs (limited to 'dsa/DSALib/Commands/NpcCommands.cs') diff --git a/dsa/DSALib/Commands/NpcCommands.cs b/dsa/DSALib/Commands/NpcCommands.cs new file mode 100644 index 0000000..510b78b --- /dev/null +++ b/dsa/DSALib/Commands/NpcCommands.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using DSALib.Characters; +using DSALib.DSA_Game; +using DSALib.DSA_Game.Characters; + +namespace DSALib.Commands +{ + public class NpcCommands + { + public static string CreateNpc(ulong id, IEnumerable props, int modifier) + { + if (int.TryParse(props.Last(), out var mean)) return Random(id, props.First(), mean, modifier); + + return Copy(id, props.First(), props.Last(), modifier); + } + + private static string Random(ulong id, string npcName, int mean = 9, int stDv = 1) + { + throw new NotImplementedException(); + //Dsa.Chars.Add(new Npc(npcName, mean, stDv)); + //return $"{npcName} wurde zufällig generiert"; + } + + private static string Copy(ulong id, string npcName, string source, int stDv = 1) + { + if (Dsa.Chars.Exists(x => x.Name.Equals(npcName))) throw new Exception("Char gibt es schon"); + throw new NotImplementedException(); + //var chr = Dsa.GetCharacter(id); + //Dsa.Chars.Add(new Character(chr as Character, npcName, stDv)); + //return $"{npcName} wurde als variierte Kopie von {source} erstellt"; + } + } +} \ No newline at end of file -- cgit v1.2.3-54-g00ecf