Advertisement
Guest User

exploration.gd

a guest
Sep 10th, 2018
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.67 KB | None | 0 0
  1.  
  2. var addedMarshRuins = false
  3.  
  4. <AddTo 0>
  5. func zoneenter(zone):
  6.     if !addedMarshRuins:
  7.         # Add in our new region.
  8.         zones.marshruin = {
  9.             background = 'marsh',
  10.             reqs = "true",
  11.             combat = true,
  12.             code = 'marshruin',
  13.             name = 'Marsh Ruin',
  14.             description = "ENTER TEXT HERE",
  15.             enemies = [{value = 'banditsmedium', weight = 3}, {value = 'oozesgroup', weight = 3}, {value = 'solospider', weight = 2},{value = 'treasurechest', weight = 1}],
  16.             encounters = [],
  17.             length = 6,
  18.             exits = ['marsh'],
  19.             tags = ['frostford'],
  20.             races = [{value = 'Dark Elf', weight = 3}],
  21.             levelrange = [6,11],
  22.         }
  23.         zones.marsh.exits.append('marshruin')
  24.         addedMarshRuins = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement