瀏覽代碼

Add battlefield

master
Noëlle 3 年之前
父節點
當前提交
f9e51179c9
共有 1 個文件被更改,包括 12 次插入1 次删除
  1. 12
    1
      koboldgen.py

+ 12
- 1
koboldgen.py 查看文件

@@ -98,7 +98,18 @@ class Plot:
def __init__(self):
self.loc_desc = Plot.loc1[r.randint(0, len(Plot.loc1)-1)]
self.location = Plot.loc2[r.randint(0, len(Plot.loc2)-1)]
self.locIndex = r.randint(0, len(Plot.loc2)-1)
if self.locIndex == len(Plot.loc2) - 1:
self.location = "battlefield on "
self.locIndex = r.randint(0, len(Plot.loc2)-2)
self.mainLocation = Plot.loc2[self.locIndex]
if self.mainLocation[0].lower() in ["a","e","i","o","u"]:
self.location += "an "
else:
self.location += "a "
self.location += self.mainLocation
else:
self.location = Plot.loc2[self.locIndex]
self.missIndex = r.randint(0, len(Plot.miss)-1)
self.oops = r.randint(1,12)
self.mission = ""

Loading…
取消
儲存