A character/one-shot generator for KOBOLDS IN SPACE!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

koboldgen.py 41KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896
  1. import random as r
  2. import argparse
  3. beg = ["a","e","i","o","u","ba","be","bi","bo","bu","by","y","da","de","di","do","du","dy","fa","fi","fo","fe","fu","ga","ge","gi","go","gu","ka","ke","ki","ko","ku","ky","ma","me","mi","mo","mu","na","ne","ni","no","nu","pa","pe","pi","po","pu","ra","re","ri","ro","ru","ry","sa","se","si","so","su","ta","te","ti","to","tu","ty","wa","we","wi","wo","wy","za","ze","zi","zo","zu","zy"]
  4. mid = beg + ["l","x","n","r"]
  5. def binarize(num, l=None):
  6. r = bin(num)[2:]
  7. try:
  8. l = int(l)
  9. except:
  10. l = None
  11. if l != None:
  12. while len(r) < l:
  13. r = "0" + r
  14. return r
  15. def gen_name(length=None, minimum=3):
  16. maximum = 8
  17. if length == None:
  18. lgt = r.randint(minimum,maximum)
  19. else:
  20. if length > maximum:
  21. length = maximum
  22. print("Maximum name length is 8.")
  23. lgt = length
  24. morae = []
  25. while len("".join(morae)) < lgt:
  26. if len(morae) == 0:
  27. mora = r.choice(beg)
  28. morae.append(mora[0].upper() + mora[1:])
  29. else:
  30. mora = r.choice(mid)
  31. if morae[-1] == mora:
  32. mora = r.choice(mid)
  33. morae.append(mora)
  34. return "".join(morae)
  35. class Plot:
  36. loc1 = ["friendly","hostile","derelict","airless","poison-filled/covered","overgrown","looted","burning","frozen","haunted","infested"]
  37. loc2 = ["asteroid","moon","space station","spaceship","ringworld","Dyson sphere","planet","Space Whale","pocket of folded space","time vortex","Reroll"]
  38. miss = ["explore","loot everything not bolted down too securely","find the last group of kobolds who came here","find a rumored secret weapon","find a way to break someone else's secret weapon","claim this place in the name of the Kobold Empire","make friends","rediscover lost technology","find lost magical items","find and defeat a powerful enemy"]
  39. prob = [
  40. {
  41. "id": 0,
  42. "name": "an Undead Sample Pack (swarm of zombies and skeletons)",
  43. "shortname": "undead",
  44. "stats": [0,5,2,6],
  45. },
  46. {
  47. "id": 1,
  48. "name": "a rival band of kobolds",
  49. "shortname": "kobold rivals",
  50. "stats": [3,3,4,4],
  51. },
  52. {
  53. "id": 2,
  54. "name": "a detachment from the Elf Armada",
  55. "shortname": "elves",
  56. "stats": [4,3,5,4],
  57. },
  58. {
  59. "id": 3,
  60. "name": "refugees with parasites. Big parasites",
  61. "shortname": "refugees",
  62. "stats": [2,4,0,0],
  63. },
  64. {
  65. "id": 4,
  66. "name": "an artificial intelligence bent on multi-world domination",
  67. "shortname": "AI",
  68. "stats": [4,1,6,3],
  69. },
  70. {
  71. "id": 5,
  72. "name": "robot spiders",
  73. "shortname": "spiders",
  74. "stats": [3,3,2,4],
  75. },
  76. {
  77. "id": 6,
  78. "name": "semi-intelligent metal eating slime",
  79. "shortname": "slime",
  80. "stats": [0,2,1,5],
  81. },
  82. {
  83. "id": 7,
  84. "name": "a living asteroid that intends to follow the kobolds home like the largest puppy",
  85. "shortname": "asteroid",
  86. "stats": [2,3,1,6],
  87. },
  88. {
  89. "id": 8,
  90. "name": "an old lich that wants everyone to stay off of their 'lawn'",
  91. "shortname": "lich",
  92. "stats": [5,2,6,3],
  93. },
  94. {
  95. "id": 9,
  96. "name": "elder gods hailing from the dark spaces between the stars",
  97. "shortname": "gods",
  98. "stats": [0,6,6,6],
  99. },
  100. {
  101. "id": 10,
  102. "name": "a Flying Brain Monster",
  103. "shortname": "Flying Brain Monster",
  104. "stats": [2,3,6,1],
  105. },
  106. ]
  107. def __init__(self, loc_desc=None, locIndex=None, battlefield=None, location=None, missIndex=None, oops=None, mission=None, probIndex=None, problem=None, probName=None, secProblem=None, thirdProblem=None):
  108. self.loc_desc = loc_desc if loc_desc != None else Plot.loc1[r.randint(0, len(Plot.loc1)-1)]
  109. self.locIndex = int(locIndex) if locIndex != None else r.randint(0, len(Plot.loc2)-1)
  110. self.battlefield = int(battlefield) if battlefield != None else 0
  111. self.location = location if location != None else Plot.loc2[self.locIndex]
  112. if locIndex == None and self.locIndex == len(Plot.loc2) - 2:
  113. if self.battlefield == 0:
  114. self.battlefield = 1
  115. self.locIndex = r.randint(0, len(Plot.loc2)-3)
  116. elif locIndex == None and self.locIndex != len(Plot.loc2) - 1:
  117. if self.location == "":
  118. self.location = Plot.loc2[self.locIndex]
  119. if self.location[0].lower() in ["a","e","i","o","u"]:
  120. self.locart = 1
  121. else:
  122. self.locart = 0
  123. self.missIndex = r.randint(0, len(Plot.miss)-1)
  124. self.oops = int(oops) if oops != None else r.randint(1,12)
  125. if self.oops != 1:
  126. self.oops = 0
  127. self.mission = Plot.miss[r.randint(0, len(Plot.miss)-1)]
  128. self.probIndex = probIndex if probIndex != None else r.randint(0, len(Plot.prob)-1)
  129. self.problem = Plot.prob[self.probIndex]
  130. self.secProblem = [x for x in Plot.prob if x["id"] == secProblem][0] if (secProblem != None and secProblem in list(filter(lambda x:x["id"], Plot.prob))) else None
  131. self.thirdProblem = [x for x in Plot.prob if x["id"] == thirdProblem][0] if (thirdProblem != None and thirdProblem in list(filter(lambda x:x["id"], Plot.prob))) else None
  132. self.problem["givenname"] = probName if probName != None else gen_name()
  133. if self.problem["id"] == 3:
  134. self.secProblem = {"name": "Parasites", "shortname": "parasites", "stats": [3,4,2,3]}
  135. if self.problem["id"] == 10:
  136. self.secProbIndex = r.randint(0, len(Plot.prob)-2)
  137. self.secProblem = Plot.prob[self.secProbIndex]
  138. if self.secProbIndex == 3:
  139. self.thirdProblem = {"name": "Parasites", "shortname": "parasites", "stats": [3,4,2,3]}
  140. self.fullProblem = self.problem["givenname"] + ", " + self.problem["name"]
  141. if self.secProblem and self.secProblem["name"] != "Parasites":
  142. self.fullProblem += " and its minion, " + self.secProblem["name"]
  143. class Character:
  144. GADGETS = [ {"id": 0, "name": "Awesome Dagger of Sneak(?) Attacks", "description": "Yell 'Sneak Attack!' to count a mixed-success Body attack as a success.", "reusable": True},
  145. {"id": 1, "name": "Button of Uselessness", "description": f"This large, red button can be stuck onto any flat surface, horizontal, vertical, or otherwise. A short time after it has been placed, any character (friend or foe) nearby must succeed a Brains roll to avoid pressing the button. Pressing the button does nothing, but this action takes the place of anything that might otherwise be done during an Event if the Brains roll is failed. The button can be pressed {r.randint(1,6)} times before it breaks and no longer compels others to press it.", "reusable": False},
  146. {"id": 2, "name": "Encyclopedia of Stuff I Totally Knew", "description": "Add 2 points to the target number of any uncontested Brains roll, or 1 point to the target number of a contested Brains roll.", "reusable": True},
  147. {"id": 3, "name": "Medkit", "description": "Make a Brains/Order roll to restore 2 lost Body points, or 1 on a Mixed Success. If the character has medical training, restored Body points may be doubled.", "reusable": False},
  148. {"id": 4, "name": "Potion of Healing", "description": "Restore 1 lost Body point. Using counts as an Event but no roll is needed unless it’s contested.", "reusable": False},
  149. {"id": 5, "name": "Tinfoil Helm of Shielding", "description": "Count any Brains damage as a mixed success. If you take Body damage, roll 1d6; on a 6, the Helm is useless until you take a nap.", "reusable": True},
  150. {"id": 6, "name": "Handy Toothbrush", "description": "Scrub the Space Gunk off whatever object you're interacting with to turn a mixed Order success to make that object work into a full success.", "reusable": True},
  151. {"id": 7, "name": "Jar of ... Something", "description": "Throw it (Body/Chaos) at another character to make them spend an Event cleaning it off, or throw it at the floor to make a ten-foot circle of difficult terrain.", "reusable": False},
  152. {"id": 8, "name": "Pocket Sand!", "description": "Yell 'Pocket Sand!' to count a successful Body attack against you as a mixed success.", "reusable": False},
  153. {"id": 9, "name": "The Fabulous Grappling Hook", "description": "As an Event, instantly move 50 feet in any direction. (Make sure you have 50 feet available to move in or take 1 Body damage when you arrive short of that.)", "reusable": True},
  154. {"id": 10, "name": "Pocket Accordion", "description": "Make a Brains/Order or Brains/Chaos roll. On a success, any nearby opponent has -1 Brains during their next event. On a failure, everybody nearby, including you, has -1 Brains on their next event.", "reusable": True},
  155. {"id": 11, "name": "Cloak of Adsorption", "description": "The cloak starts out white. Whenever you are the target of a successful attack, the cloak becomes the color of whatever hit you. If your cloak is already the same color as whatever hit you, the attack becomes a mixed success and the cloak turns black and can no longer absorb colors. The cloak becomes white again after a nap.", "reusable": True},
  156. {"id": 12, "name": "Cloak of Absorption", "description": "The cloak starts out white. You can remove the cloak and lay it over difficult terrain to make it easy terrain; if the terrain is difficult because the ground is wet, the cloak becomes wet and the ground in that area becomes dry. The cloak dries out after a nap.", "reusable": True},
  157. {"id": 13, "name": "Cloak of Desorption", "description": "The cloak starts out black. As an Event, you can cause a gas to evaporate from the cloak, leaving it a dingy gray and healing 1 Body to anyone within ten feet of you. The cloak becomes black again after a nap.", "reusable": True},
  158. {"id": 14, "name": "Cloak of Food Portions", "description": "Wearing this cloak causes it to flare out at the base, making the wearer resemble a pyramid. In conversations regarding food the wearer can add +2 to Brains rolls when trying to convince others to alter their diets. This can be done once per nap. Considering how many large things tend to snack on kobolds, this has been found to actually be quite useful.", "reusable": True},
  159. {"id": 15, "name": "Huge Goggles", "description": "If you take Body damage, roll 1d6; on a 6, the lenses of the Goggles break until you take a nap.", "reusable": True},
  160. ]
  161. CAREERS = [ {"id": 0, "name": "Soldier/Guard"},
  162. {"id": 1, "name": "Pilot"},
  163. {"id": 2, "name": "Medic"},
  164. {"id": 3, "name": "Mechanic"},
  165. {"id": 4, "name": "Politician"},
  166. {"id": 5, "name": "Spellcaster"},
  167. {"id": 6, "name": "Performer"},
  168. {"id": 7, "name": "Historian"},
  169. {"id": 8, "name": "Spy"},
  170. {"id": 9, "name": "Cook"},
  171. {"id": 10, "name": "Cartographer"},
  172. {"id": 11, "name": "Inventor"},
  173. {"id": 12, "name": "Merchant"}
  174. ]
  175. def __init__(self, name=None, career=None, stats=None, gadget=None):
  176. self.name = name if name != None else ""
  177. if career == None:
  178. self.career = ""
  179. elif isinstance(career, str):
  180. self.career = career
  181. elif isinstance(career, int) and career < len(Campaign.CAREERS):
  182. self.career = [x for x in Character.CAREERS if x["id"] == career][0]["name"]
  183. else:
  184. self.career = ""
  185. self.stats = stats if stats != None else []
  186. if gadget == None:
  187. self.gadget = ""
  188. elif isinstance(gadget, str) or isinstance(gadget, object):
  189. self.gadget = gadget
  190. elif isinstance(gadget, int) and gadget < len(Campaign.GADGETS):
  191. self.gadget = [x for x in Character.GADGETS if x["id"] == gadget][0]
  192. else:
  193. self.gadget = ""
  194. self.generate()
  195. def generate(self):
  196. if self.name == "" or self.name == None:
  197. self.gen_name()
  198. if self.stats == [] or self.stats == None:
  199. self.gen_stats()
  200. if self.career == "" or self.career == None:
  201. self.gen_career()
  202. if self.gadget == "" or self.gadget == None:
  203. self.gen_gadget()
  204. def gen_name(self):
  205. self.name = gen_name()
  206. def gen_stats(self, n=12):
  207. if n < 0:
  208. print("Too few stat points!")
  209. return [0,0,0,0]
  210. stats = [0,0,0,0]
  211. points = n
  212. slots = [0,1,2,3]
  213. for _ in range(points):
  214. tgl = False
  215. while tgl == False:
  216. slt = r.choice(slots)
  217. if slt <= 1:
  218. if stats[slt] == 6: continue
  219. if stats[slt] == 5 and r.randint(0,1) != 1: continue
  220. else:
  221. if stats[slt] == 6: continue
  222. if stats[slt] > 2 and r.randint(0,stats[slt]-2) != 1: continue
  223. stats[slt] += 1
  224. tgl = True
  225. stats[3] = stats[3] + 1
  226. if stats[3] > 6:
  227. stats[3] = 6
  228. stats[2] = stats[2] + 1
  229. if stats[2] > 6:
  230. stats[2] = 6
  231. self.stats = stats
  232. def gen_career(self):
  233. self.career = r.choice(Character.CAREERS)
  234. def gen_gadget(self):
  235. self.gadget = r.choice(Character.GADGETS)
  236. def print_name(self, html=False):
  237. if isinstance(self.career, str):
  238. cname = self.career
  239. else:
  240. cname = self.career["name"]
  241. if html:
  242. charText = f"<h4>Name: {self.name} (Kobold {cname})</h4>"
  243. else:
  244. charText = f"\nName: {self.name} (Kobold {cname})"
  245. print(charText)
  246. def print(self, html=False):
  247. if html:
  248. if isinstance(self.career, str):
  249. cname = self.career
  250. else:
  251. cname = self.career["name"]
  252. if isinstance(self.gadget, str):
  253. gdg = {"id": 127, "name": self.gadget, "description": "", "reusable": True}
  254. else:
  255. gdg = self.gadget
  256. out = (
  257. f"<div class='kobold'>\n"
  258. f" <span class='koboldid'>\n"
  259. f" <span class='koboldname'>{self.name}</span><br>\n"
  260. f" <span class='koboldcareer'>Kobold {cname}</span>\n"
  261. f" </span>\n"
  262. f" <br>\n"
  263. f" <span class='koboldstats'>\n"
  264. f" <ul>\n"
  265. f" <li>Order: {self.stats[0]}</li>\n"
  266. f" <li>Chaos: {self.stats[1]}</li>\n"
  267. f" <li>Brain: {self.stats[2]}</li>\n"
  268. f" <li>Body: {self.stats[3]}</li>\n"
  269. f" </ul>\n"
  270. f" </span>\n"
  271. f" <br>\n"
  272. f" <span class='koboldgadget'>\n"
  273. f" <span class='koboldgadgetname'>{gdg['name']}</span><br>\n"
  274. f" <span class='koboldgadgetdescription'>{gdg['description']}</span>\n"
  275. f" <span class='koboldgadgetreuse'>{'<br>Reusable' if gdg['reusable'] else ''}</span>\n"
  276. f" </span>"
  277. f"</div>\n"
  278. )
  279. print(out)
  280. else:
  281. self.print_name()
  282. print(f"Order: {self.stats[0]}")
  283. print(f"Chaos: {self.stats[1]}")
  284. print(f"Brain: {self.stats[2]}")
  285. print(f"Body: {self.stats[3]}")
  286. if isinstance(self.gadget, str):
  287. print(f"Gadget: {self.gadget}")
  288. else:
  289. print(f"Gadget: {self.gadget['name']} ({self.gadget['description']}{'- Reusable' if self.gadget['reusable'] else ''})")
  290. class Ship:
  291. NAME1 = ["Red","Orange","Yellow","Green","Blue","Violet","Dark","Light","Frenzied","Maniacal","Ancient"]
  292. NAME2 = ["Moon","Comet","Star","Saber","World-Eater","Dancer","Looter","Phlogiston","Fireball","Mecha","Raptor"]
  293. GQUAL = ["is stealthy & unarmored","is speedy & unarmored","is maneuverable & unarmored","is always repairable","is self-repairing","is flamboyant & speedy","is slow & armored","is flamboyant & armored","is hard to maneuver & armored","has Too Many Weapons!","has a prototype hyperdrive"]
  294. BQUAL = ["has an annoying AI","has inconveniently crossed circuits","has an unpredictable power source","drifts to the right","is haunted","was recently 'found' so the kobolds are unused to it","is too cold","has a constant odd smell","its interior design... changes","its water pressure shifts between slow drip and power wash","it leaves a visible smoke trail"]
  295. def __init__(self, name1=None, name2=None, gqual = None, bqual = None):
  296. self.name1 = name1 if name1 != None else r.choice(Ship.NAME1)
  297. self.name2 = name2 if name2 != None else r.choice(Ship.NAME2)
  298. self.gqual = gqual if gqual != None else r.choice(Ship.GQUAL)
  299. self.bqual = bqual if bqual != None else r.choice(Ship.BQUAL)
  300. self.fullname = f"{self.name1} {self.name2}"
  301. def print(self, html=False):
  302. if (html):
  303. shipText = f"<p>The <strong>{self.fullname}</strong> <span style='color: blue;'>{self.gqual}</span>, but <span style='color: red;'>{self.bqual}</span>.</p>\n"
  304. else:
  305. shipText = f"The {self.fullname} {self.gqual}, but {self.bqual}.\n"
  306. print(shipText)
  307. class Campaign:
  308. ALPHABET = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz?- "
  309. NAMELETS = ['a', 'e', 'i', 'o', 'u', 'b', 'y', 'd', 'f', 'g', 'k', 'm', 'n', 'p', 'r', 's', 't', 'w', 'z', 'l', 'x']
  310. def __init__(self, n=None, makeChars=True, fromPW=False, pw=None):
  311. if fromPW == True:
  312. self.ship = None
  313. self.params = None
  314. self.characters = None
  315. self.art = None
  316. self.decode_key(pw)
  317. else:
  318. self.create_campaign(n, makeChars)
  319. def create_campaign(self, n, makeChars):
  320. n = 6 if n == None else n
  321. self.ship = Ship()
  322. self.params = Plot()
  323. self.params.problem["fullname"] = ""
  324. if self.params.problem["id"] in [1,2]:
  325. self.params.problem["fullname"] += " led by " + self.params.problem["name"]
  326. if self.params.problem["id"] in [4,7,8,10]:
  327. self.params.problem["fullname"] += " named " + self.params.problem["name"]
  328. if makeChars:
  329. self.characters = []
  330. for _ in range(n):
  331. c = Character()
  332. c.generate()
  333. self.characters.append(c)
  334. self.art = "an" if self.params.loc_desc[0] in ["a","e","i","o","u"] else "a"
  335. def generate_key(self):
  336. """
  337. "PACKTA CTICS! ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- -------" should generate the Season 3 Pack Tactics crew.
  338. "JUSTIN BAILEY" and "NARPAS SWORD" should do something too.
  339. Key is analphanumeric string generated from a bitfield
  340. Bitfield is:
  341. Location 1: 7 bits
  342. Location 2: 7 bits
  343. Location Battlefield: 1 bit
  344. Mission: 7 bits
  345. Oops: 1 bit
  346. Problem 1: 7 bits
  347. Problem 1 name: 40 bits
  348. Problem 2: 7 bits
  349. Ship name 1: 7 bits
  350. Ship name 2: 7 bits
  351. Ship gqual: 7 bits
  352. Ship bqual: 7 bits
  353. Character 1 name: 40 bits
  354. Character 1 career: 7 bits
  355. Character 1 order: 3 bits
  356. Character 1 chaos: 3 bits
  357. Character 1 body: 3 bits
  358. Character 1 brain: 3 bits
  359. Character 1 gadget: 7 bits
  360. Character 2 name: 40 bits
  361. Character 2 career: 7 bits
  362. Character 2 order: 3 bits
  363. Character 2 chaos: 3 bits
  364. Character 2 body: 3 bits
  365. Character 2 brain: 3 bits
  366. Character 2 gadget: 7 bits
  367. Character 3 name: 40 bits
  368. Character 3 career: 7 bits
  369. Character 3 order: 3 bits
  370. Character 3 chaos: 3 bits
  371. Character 3 body: 3 bits
  372. Character 3 brain: 3 bits
  373. Character 3 gadget: 7 bits
  374. Character 4 name: 40 bits
  375. Character 4 career: 7 bits
  376. Character 4 order: 3 bits
  377. Character 4 chaos: 3 bits
  378. Character 4 body: 3 bits
  379. Character 4 brain: 3 bits
  380. Character 4 gadget: 7 bits
  381. Character 5 name: 40 bits
  382. Character 5 career: 7 bits
  383. Character 5 order: 3 bits
  384. Character 5 chaos: 3 bits
  385. Character 5 body: 3 bits
  386. Character 5 brain: 3 bits
  387. Character 5 gadget: 7 bits
  388. Character 6 name: 40 bits
  389. Character 6 career: 7 bits
  390. Character 6 order: 3 bits
  391. Character 6 chaos: 3 bits
  392. Character 6 body: 3 bits
  393. Character 6 brain: 3 bits
  394. Character 6 gadget: 7 bits
  395. 104 for campaign
  396. 396 for characters
  397. total 501
  398. 11 remaining
  399. """
  400. self.key = ""
  401. l1 = bin(Plot.loc1.index(self.params.loc_desc))[2:]
  402. l2 = bin(Plot.loc2.index(self.params.location))[2:]
  403. lb = bin(self.params.battlefield)[2:]
  404. op = bin(self.params.oops)[2:]
  405. ms = bin(Plot.miss.index(self.params.mission))[2:]
  406. pb1 = bin(self.params.probIndex)[2:]
  407. if self.params.probIndex == 10:
  408. pb2 = bin(self.params.secProbIndex)[2:]
  409. else:
  410. pb2 = bin(127)[2:]
  411. pbname = self.encode_name(self.params.problem["givenname"])
  412. n1 = bin(Ship.NAME1.index(self.ship.name1))[2:]
  413. n2 = bin(Ship.NAME2.index(self.ship.name2))[2:]
  414. gq = bin(Ship.GQUAL.index(self.ship.gqual))[2:]
  415. bq = bin(Ship.BQUAL.index(self.ship.bqual))[2:]
  416. chars = {}
  417. i = 0
  418. for chct in self.characters:
  419. chars[i] = {
  420. "name": self.encode_name(chct.name),
  421. "career": bin(chct.career["id"])[2:],
  422. "order": bin(chct.stats[0])[2:],
  423. "chaos": bin(chct.stats[1])[2:],
  424. "body": bin(chct.stats[2])[2:],
  425. "brains": bin(chct.stats[3])[2:],
  426. "gadget": bin(chct.gadget["id"])[2:]
  427. }
  428. i += 1
  429. # print(chars)
  430. l1 = lpad(l1, 7)
  431. # print(f"Len(l1) = {len(l1)}")
  432. l2 = lpad(l2, 7)
  433. # print(f"Len(l2) = {len(l2)}")
  434. ms = lpad(ms, 7)
  435. # print(f"Len(ms) = {len(ms)}")
  436. pb1 = lpad(pb1, 7)
  437. # print(f"Len(pb1) = {len(pb1)}")
  438. pb2 = lpad(pb2, 7)
  439. # print(f"Len(pb2) = {len(pb2)}")
  440. pbname = lpad(pbname, 40, "1")
  441. # print(f"Len(pbname) = {len(pbname)}")
  442. n1 = lpad(n1, 7)
  443. # print(f"Len(n1) = {len(n1)}")
  444. n2 = lpad(n2, 7)
  445. # print(f"Len(n2) = {len(n2)}")
  446. gq = lpad(gq, 7)
  447. # print(f"Len(gq) = {len(gq)}")
  448. bq = lpad(bq, 7)
  449. # print(f"Len(bq) = {len(bq)}")
  450. self.key += l1 + l2 + lb + op + ms + pb1 + pbname + pb2 + n1 + n2 + gq + bq
  451. for k,chct in chars.items():
  452. chct["name"] = lpad(chct["name"], 40, "1")
  453. # print(f"Len(chct.name) = {len(chct['name'])}")
  454. chct["career"] = lpad(chct["career"], 7)
  455. # print(f"Len(chct.career) = {len(chct['career'])}")
  456. chct["order"] = lpad(chct["order"],3)
  457. # print(f"Len(chct.order) = {len(chct['order'])}")
  458. chct["chaos"] = lpad(chct["chaos"], 3)
  459. # print(f"Len(chct.chaos) = {len(chct['chaos'])}")
  460. chct["body"] = lpad(chct["body"], 3)
  461. # print(f"Len(chct.body) = {len(chct['body'])}")
  462. chct["brains"] = lpad(chct["brains"], 3)
  463. # print(f"Len(chct.brains) = {len(chct['brains'])}")
  464. chct["gadget"] = lpad(chct["gadget"], 7)
  465. # print(f"Len(chct.gadget) = {len(chct['gadget'])}")
  466. self.key += chct["name"] + chct["career"] + chct["order"] + chct["chaos"] + chct["body"] + chct["brains"] + chct["gadget"]
  467. # print(len(self.key))
  468. while len(self.key) < 509:
  469. self.key = self.key + "0"
  470. # print(len(self.key))
  471. print(self.key)
  472. self.okey = ""
  473. letters = []
  474. letter = []
  475. for bit in self.key:
  476. letter.append(bit)
  477. if len(letter) == 6:
  478. letters.append(Campaign.ALPHABET[int("".join(letter),2)])
  479. letter = []
  480. words = []
  481. word = []
  482. for lt in letters:
  483. word.append(lt)
  484. if len(word) == 6:
  485. words.append("".join(word))
  486. word = []
  487. words.append("".join(word))
  488. self.password = " ".join(words)
  489. # print(self.password)
  490. return self.password
  491. def decode_key(self, pw):
  492. densePwd = pw.replace(" ", "")
  493. if densePwd == "PACKTACTICS!------------------------------------------------------------------------------------":
  494. # Create a campaign featuring the Season 3 Pack Tactics crew.
  495. self.ship = Ship("Red", "Star", "is maneuverable & unarmored", "has a politician who thinks they're in charge of it")
  496. self.params = Plot()
  497. self.art = "an" if self.params.loc_desc[0] in ["a","e","i","o","u"] else "a"
  498. self.characters = []
  499. self.characters.append(Character("Niwri", "Hunter", [3,4,4,3], "Shortbow of the Watch"))
  500. self.characters.append(Character("Zax", "Barbarian", [1, 6, 2, 5], "Hammer of Thunderbolts"))
  501. self.characters.append(Character("Chroma", "Artificer", [4, 2, 5, 3], "Eldritch Cannon"))
  502. self.characters.append(Character("Zenosha", "Druid", [3, 3, 5, 3], "Staff of Lightning"))
  503. self.characters.append(Character("Snax", "Wizard", [2, 4, 5, 1], "Voyager Staff"))
  504. # self.print_params()
  505. # self.print_chars()
  506. return
  507. elif densePwd == "JUSTINBAILEY------------------------------------------------------------------------------------":
  508. # Create a random campaign, but everyone's Gadget is a leotard that somehow is also an environment suit
  509. self.create_campaign(n=6, makeChars=True)
  510. for c in self.characters:
  511. c.gadget = {"id":127, "name": "The Bailey", "description": "A form-fitting leotard that somehow protects the wearer from all environmental effects except extreme heat - including vacuum and poison.", "reusable": True}
  512. # self.print_params()
  513. # self.print_chars()
  514. return
  515. elif densePwd == "NARPASSWORD------------------------------------------------------------------------------------":
  516. # Create a random campaign, but all the kobolds' stats are set to 6
  517. self.create_campaign(n=6, makeChars=True)
  518. for c in self.characters:
  519. c.stats = [6,6,6,6]
  520. # self.print_params()
  521. # self.print_chars()
  522. return
  523. numPwd = []
  524. for c in densePwd:
  525. numPwd.append(Campaign.ALPHABET.index(c))
  526. bitPwd = [lpad(bin(x).replace("0b",""), 6) for x in numPwd]
  527. longBitPwd = []
  528. for word in bitPwd:
  529. longword = lpad(word,6)
  530. longBitPwd.append(longword)
  531. self.newBitfield = "".join(longBitPwd)
  532. while len(self.newBitfield) < 509:
  533. self.newBitfield += "0"
  534. outkey = {}
  535. # Location 1: 7 bits
  536. i,j = 0,7
  537. outkey["loc1"] = int(self.newBitfield[i:j], 2)
  538. # Location 2: 7 bits
  539. i,j = j,j+7
  540. outkey["loc2"] = int(self.newBitfield[i:j], 2)
  541. # Location Battlefield: 1 bit
  542. i,j = j,j+1
  543. outkey["battlefield"] = int(self.newBitfield[i:j], 2)
  544. # Mission: 7 bits
  545. i,j = j,j+7
  546. outkey["miss"] = int(self.newBitfield[i:j], 2)
  547. # Oops: 1 bit
  548. i,j = j,j+1
  549. outkey["oops"] = int(self.newBitfield[i:j], 2)
  550. # Problem 1: 7 bits
  551. i,j = j,j+7
  552. outkey["prob1"] = int(self.newBitfield[i:j], 2)
  553. # Problem 1 name: 40 bits
  554. i,j = j,j+40
  555. outkey["prob1name"] = self.newBitfield[i:j]
  556. # Problem 2: 7 bits
  557. i,j = j,j+7
  558. outkey["prob2"] = int(self.newBitfield[i:j], 2)
  559. # Ship name 1: 7 bits
  560. i,j = j,j+7
  561. outkey["sname1"] = int(self.newBitfield[i:j], 2)
  562. # Ship name 2: 7 bits
  563. i,j = j,j+7
  564. outkey["sname2"] = int(self.newBitfield[i:j], 2)
  565. # Ship gqual: 7 bits
  566. i,j = j,j+7
  567. outkey["gqual"] = int(self.newBitfield[i:j], 2)
  568. # Ship bqual: 7 bits
  569. i,j = j,j+7
  570. outkey["bqual"] = int(self.newBitfield[i:j], 2)
  571. # Character 1 name: 40 bits
  572. i,j = j,j+40
  573. outkey["char1name"] = self.newBitfield[i:j]
  574. # Character 1 career: 7 bits
  575. i,j = j,j+7
  576. outkey["char1career"] = int(self.newBitfield[i:j], 2)
  577. # Character 1 order: 3 bits
  578. i,j = j,j+3
  579. outkey["char1ord"] = int(self.newBitfield[i:j], 2)
  580. # Character 1 chaos: 3 bits
  581. i,j = j,j+3
  582. outkey["char1cha"] = int(self.newBitfield[i:j], 2)
  583. # Character 1 body: 3 bits
  584. i,j = j,j+3
  585. outkey["char1bod"] = int(self.newBitfield[i:j], 2)
  586. # Character 1 brain: 3 bits
  587. i,j = j,j+3
  588. outkey["char1bra"] = int(self.newBitfield[i:j], 2)
  589. # Character 1 gadget: 7 bits
  590. i,j = j,j+7
  591. outkey["char1gad"] = int(self.newBitfield[i:j], 2)
  592. # Character 2 name: 40 bits
  593. i,j = j,j+40
  594. outkey["char2name"] = self.newBitfield[i:j]
  595. # Character 2 career: 7 bits
  596. i,j = j,j+7
  597. outkey["char2career"] = int(self.newBitfield[i:j], 2)
  598. # Character 2 order: 3 bits
  599. i,j = j,j+3
  600. outkey["char2ord"] = int(self.newBitfield[i:j], 2)
  601. # Character 2 chaos: 3 bits
  602. i,j = j,j+3
  603. outkey["char2cha"] = int(self.newBitfield[i:j], 2)
  604. # Character 2 body: 3 bits
  605. i,j = j,j+3
  606. outkey["char2bod"] = int(self.newBitfield[i:j], 2)
  607. # Character 2 brain: 3 bits
  608. i,j = j,j+3
  609. outkey["char2bra"] = int(self.newBitfield[i:j], 2)
  610. # Character 2 gadget: 7 bits
  611. i,j = j,j+7
  612. outkey["char2gad"] = int(self.newBitfield[i:j], 2)
  613. # Character 3 name: 40 bits
  614. i,j = j,j+40
  615. outkey["char3name"] = self.newBitfield[i:j]
  616. # Character 3 career: 7 bits
  617. i,j = j,j+7
  618. outkey["char3career"] = int(self.newBitfield[i:j], 2)
  619. # Character 3 order: 3 bits
  620. i,j = j,j+3
  621. outkey["char3ord"] = int(self.newBitfield[i:j], 2)
  622. # Character 3 chaos: 3 bits
  623. i,j = j,j+3
  624. outkey["char3cha"] = int(self.newBitfield[i:j], 2)
  625. # Character 3 body: 3 bits
  626. i,j = j,j+3
  627. outkey["char3bod"] = int(self.newBitfield[i:j], 2)
  628. # Character 3 brain: 3 bits
  629. i,j = j,j+3
  630. outkey["char3bra"] = int(self.newBitfield[i:j], 2)
  631. # Character 3 gadget: 7 bits
  632. i,j = j,j+7
  633. outkey["char3gad"] = int(self.newBitfield[i:j], 2)
  634. # Character 4 name: 40 bits
  635. i,j = j,j+40
  636. outkey["char4name"] = self.newBitfield[i:j]
  637. # Character 4 career: 7 bits
  638. i,j = j,j+7
  639. outkey["char4career"] = int(self.newBitfield[i:j], 2)
  640. # Character 4 order: 3 bits
  641. i,j = j,j+3
  642. outkey["char4ord"] = int(self.newBitfield[i:j], 2)
  643. # Character 4 chaos: 3 bits
  644. i,j = j,j+3
  645. outkey["char4cha"] = int(self.newBitfield[i:j], 2)
  646. # Character 4 body: 3 bits
  647. i,j = j,j+3
  648. outkey["char4bod"] = int(self.newBitfield[i:j], 2)
  649. # Character 4 brain: 3 bits
  650. i,j = j,j+3
  651. outkey["char4bra"] = int(self.newBitfield[i:j], 2)
  652. # Character 4 gadget: 7 bits
  653. i,j = j,j+7
  654. outkey["char4gad"] = int(self.newBitfield[i:j], 2)
  655. # Character 5 name: 40 bits
  656. i,j = j,j+40
  657. outkey["char5name"] = self.newBitfield[i:j]
  658. # Character 5 career: 7 bits
  659. i,j = j,j+7
  660. outkey["char5career"] = int(self.newBitfield[i:j], 2)
  661. # Character 5 order: 3 bits
  662. i,j = j,j+3
  663. outkey["char5ord"] = int(self.newBitfield[i:j], 2)
  664. # Character 5 chaos: 3 bits
  665. i,j = j,j+3
  666. outkey["char5cha"] = int(self.newBitfield[i:j], 2)
  667. # Character 5 body: 3 bits
  668. i,j = j,j+3
  669. outkey["char5bod"] = int(self.newBitfield[i:j], 2)
  670. # Character 5 brain: 3 bits
  671. i,j = j,j+3
  672. outkey["char5bra"] = int(self.newBitfield[i:j], 2)
  673. # Character 5 gadget: 7 bits
  674. i,j = j,j+7
  675. outkey["char5gad"] = int(self.newBitfield[i:j], 2)
  676. # Character 6 name: 40 bits
  677. i,j = j,j+40
  678. outkey["char6name"] = self.newBitfield[i:j]
  679. # Character 6 career: 7 bits
  680. i,j = j,j+7
  681. outkey["char6career"] = int(self.newBitfield[i:j], 2)
  682. # Character 6 order: 3 bits
  683. i,j = j,j+3
  684. outkey["char6ord"] = int(self.newBitfield[i:j], 2)
  685. # Character 6 chaos: 3 bits
  686. i,j = j,j+3
  687. outkey["char6cha"] = int(self.newBitfield[i:j], 2)
  688. # Character 6 body: 3 bits
  689. i,j = j,j+3
  690. outkey["char6bod"] = int(self.newBitfield[i:j], 2)
  691. # Character 6 brain: 3 bits
  692. i,j = j,j+3
  693. outkey["char6bra"] = int(self.newBitfield[i:j], 2)
  694. # Character 6 gadget: 7 bits
  695. i,j = j,j+7
  696. outkey["char6gad"] = int(self.newBitfield[i:j], 2)
  697. print(self.newBitfield)
  698. print(outkey)
  699. self.ship = Ship(Ship.NAME1[outkey["sname1"]], Ship.NAME2[outkey["sname2"]], Ship.GQUAL[outkey["gqual"]], Ship.BQUAL[outkey["bqual"]])
  700. self.params = Plot(loc_desc=Plot.loc1[outkey["loc1"]], locIndex=outkey["loc2"], battlefield=outkey["battlefield"], location=None, missIndex=outkey["miss"], oops=outkey["oops"], mission=None, probIndex=outkey["prob1"], problem=None, probName=self.decode_name(outkey["prob1name"]), secProblem=outkey["prob2"], thirdProblem=None)
  701. self.art = "an" if self.params.loc_desc[0] in ["a","e","i","o","u"] else "a"
  702. self.characters = []
  703. for q in range(1,7):
  704. keys = [f"char{q}name", f"char{q}career", f"char{q}ord", f"char{q}cha", f"char{q}bod", f"char{q}bra", f"char{q}gad"]
  705. c = Character(name=self.decode_name(outkey[keys[0]]), career=outkey[keys[1]], stats=[outkey[keys[2]], outkey[keys[3]], outkey[keys[4]], outkey[keys[5]]], gadget=outkey[keys[6]])
  706. self.characters.append(c)
  707. #self.ship.print()
  708. # self.print_params()
  709. # self.print_chars()
  710. return self.newBitfield
  711. def encode_name(self, name):
  712. field = "".join([lpad(bin(Campaign.NAMELETS.index(c.lower()))[2:], 5) for c in name])
  713. return field
  714. def decode_name(self, field):
  715. i,j = 35,40
  716. name = ""
  717. for _ in range(8):
  718. k = int(field[i:j], 2)
  719. if k != 31:
  720. name = Campaign.NAMELETS[k] + name
  721. i,j = i-5, i
  722. name = name[0].upper() + name[1:]
  723. return name
  724. def print_params(self, endc=" ", html=False):
  725. # print(len(Plot.miss))
  726. st = ["Order:", "Chaos:", "Brains:", "Body:"]
  727. cst = ", ".join([" ".join(y) for y in list(zip(st, [str(x) for x in self.params.problem["stats"]]))])
  728. if self.params.oops == 1:
  729. oops = "...well, they weren't paying attention, so don't tell them, but they're supposed to"
  730. else:
  731. oops = ""
  732. mission = oops + self.params.mission
  733. lines = [
  734. f"The Kobolds of the {self.ship.fullname}",
  735. f"have been sent out to {self.art} {self.params.loc_desc} {self.params.location}!",
  736. f"in order to {self.params.mission}",
  737. f"but they're challenged by {self.params.fullProblem}!",
  738. f"The stats of the {self.params.problem['shortname']}",
  739. f"{cst}"
  740. ]
  741. if self.params.secProblem:
  742. mst = ", ".join([" ".join(y) for y in list(zip(st, [str(x) for x in self.params.secProblem["stats"]]))])
  743. lines.append(f"The stats of the {self.params.secProblem['shortname']}")
  744. lines.append(f"{mst}")
  745. if self.params.thirdProblem:
  746. pst = ", ".join([" ".join(y) for y in list(zip(st, [str(x) for x in self.params.thirdProblem["stats"]]))])
  747. lines.append(f"The stats of the {self.params.thirdProblem['shortname']}")
  748. lines.append("{pst}")
  749. if html:
  750. out = (
  751. f"<div id='theship' class='firstrow'>\n"
  752. f" <span class='head'>The Ship</span>\n"
  753. f" <span id='shipname'>\n"
  754. f" The {self.ship.fullname}!\n"
  755. f" </span>\n"
  756. f" <br>\n"
  757. f" <span id='shipquality1'>\n"
  758. f" It {self.ship.gqual}...\n"
  759. f" </span><br>\n"
  760. f" <span id='shipquality2'>\n"
  761. f" But {self.ship.bqual}!\n"
  762. f" </span>\n"
  763. f"</div>\n"
  764. f"<div id='themission' class='firstrow'>\n"
  765. f" <span class='head'>The Mission</span>\n"
  766. f" <span id='missionloc'>\n"
  767. f" The kobolds have been sent to {self.art} {self.params.loc_desc} {self.params.location}!\n"
  768. f" </span><br>\n"
  769. f" <span id='missiontarget'>\n"
  770. f" in order {self.params.mission}\n"
  771. f" </span>\n"
  772. f"</div>\n<br clear='all'>\n"
  773. f"<div id='theadversary' class='firstrow'>\n"
  774. f" <span class='head'>The Adversary</span>\n"
  775. f" They're challenged by <span id='advname'>{self.params.fullProblem}</span>!\n"
  776. f" <br>\n"
  777. f" <span id='problemstats'>\n"
  778. f" The stats of the {self.params.problem['shortname']}:<br>\n"
  779. f" {cst}\n"
  780. f" </span>\n"
  781. )
  782. if self.params.secProblem:
  783. out += (
  784. f" <br><span id='secprobstats'>\n"
  785. f" The stats of the {self.params.secProblem['shortname']}:<br>\n"
  786. f" {mst}\n"
  787. f" </span>\n"
  788. )
  789. if self.params.thirdProblem:
  790. out += (
  791. f" <br><span id='thirdprobstats'>\n"
  792. f" The stats of the {self.params.thirdProblem['shortname']}:<br>\n"
  793. f" {pst}\n"
  794. f" </span>\n"
  795. )
  796. out += f"</div>\n"
  797. print(out)
  798. print(f"<br clear='all'>\n")
  799. else:
  800. print(f"{lines[0]} {lines[1]} {lines[2]} -- {lines[3]}")
  801. print(f"{lines[4]}: {lines[5]}")
  802. if self.params.secProblem:
  803. print(f"- {lines[6]}: {lines[7]}")
  804. if self.params.thirdProblem:
  805. print(f"- - {lines[8]}: {lines[9]}")
  806. print()
  807. self.ship.print(html=html)
  808. def print_chars(self, html=False):
  809. if html:
  810. print(f"<div id='thekobolds'>\n")
  811. print(f"<span class='head'>The Kobolds</span>\n")
  812. else:
  813. print("The kobolds:")
  814. for k in self.characters:
  815. k.print(html=html)
  816. if html:
  817. print(f"</div>\n<br clear='all'>\n")
  818. def decode(self, pwd):
  819. pass
  820. class Password:
  821. pass
  822. def lpad(s, n, c="0"):
  823. while len(s) < n:
  824. s = c + s
  825. return s
  826. if __name__ == "__main__":
  827. parser = argparse.ArgumentParser()
  828. group = parser.add_mutually_exclusive_group()
  829. group.add_argument("-c", "--campaign", help="print a full campaign block with N kobolds (default 6)", nargs="?", const=6, type=int, metavar="N")
  830. group.add_argument("-k", "--kobolds", help="print N kobolds", type=int, nargs="?", const=1, default=1, metavar="N")
  831. group.add_argument("-n", "--names", help="print N kobolds without stat blocks", nargs="?", const=1, type=int, metavar="N")
  832. group.add_argument("-p", "--params", help="print only the parameters of a campaign", action="store_true")
  833. group.add_argument("-s", "--ship", help="print only the ship name and description", action="store_true")
  834. group.add_argument("-pw", "--password", help="print the campaign defined by the submitted password", type=str, nargs="?", const=1, metavar="PW")
  835. parser.add_argument("--html", help="print in HTML instead of plain text", action="store_true")
  836. args = parser.parse_args()
  837. # print(args)
  838. html = True if args.html else False
  839. if args.password:
  840. #pw = Password(args.password)
  841. # print(pw.newBitfield)
  842. cmp = Campaign(fromPW = True, pw=args.password)
  843. cmp.print_params(html=html)
  844. cmp.print_chars(html=html)
  845. elif args.campaign:
  846. cmp = Campaign(args.campaign)
  847. cmp.print_params(html=html)
  848. cmp.print_chars(html=html)
  849. print(cmp.generate_key())
  850. elif args.params:
  851. cmp = Campaign(makeChars=False)
  852. cmp.print_params(html=html)
  853. elif args.ship:
  854. ship = Ship()
  855. ship.print(html=html)
  856. elif args.names:
  857. for _ in range(args.names):
  858. c = Character()
  859. c.generate()
  860. c.print_name(html=html)
  861. else:
  862. for _ in range(args.kobolds):
  863. c = Character()
  864. c.generate()
  865. c.print(html=html)