Advertisement
wtmhahagd

biomemap.py

Aug 12th, 2013
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.87 KB | None | 0 0
  1. def main():
  2.    
  3.     biomemap = [ [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2]
  4.              [0, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2]
  5.                  [0, 0, 0, 0, 0, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2]
  6.              [0, 0, 0, 0, 0, 0, 1, 1, 1, 2, 2, 2, 2, 2, 2]
  7.              [0, 0, 0, 0, 1, 1, 1, 2, 2, 1, 2, 2, 2, 2, 2]
  8.              [0, 0, 1, 1, 1, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2]
  9.              [0, 0, 0, 1, 1, 1, 2, 2, 2, 2, 1, 1, 1, 1, 2]
  10.              [0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 1, 1, 1, 1]
  11.              [0, 0, 0, 0, 0, 0, 1, 1, 1, 2, 1, 1, 1, 1, 2]
  12.              [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2]
  13.              [0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2]
  14.              [0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2]
  15.              [0, 0, 1, 1, 1, 1, 1  1, 0, 1, 1, 1, 0, 0, 0]
  16.              [0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 2, 2, 2]
  17.              [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2] ]
  18.     return 0
  19.  
  20. if __name__ == '__main__':
  21.     main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement