Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.27 KB | None | 0 0
  1. config:
  2.   name: dotloot test
  3.   version: 0.1
  4.   league: Blight
  5.  
  6. colors:
  7.   black: &black 13 14 6 222
  8.   green: &green 82 220 65 240
  9.   yellow: &yellow 250 252 168 240
  10.   white: &white 255 255 255 240
  11.   purple: &purple 125 125 247 240
  12.   brown: &brown 218 200 164 240
  13.   nocolor: &nocolor 255 255 255 0
  14.  
  15. styles:
  16.   basestyle: &basestyle
  17.     bg: *black
  18.     fontsize: 45
  19.     border: *nocolor
  20.  
  21.   highunique: &highunique
  22.     <<: *basestyle
  23.     fg: *brown
  24.     border: *brown
  25.     icon: 0 Yellow Hexagon
  26.     beam: Yellow
  27.     customsound: questdone.wav
  28.  
  29.   medunique: &medunique
  30.     <<: *basestyle
  31.     fg: *brown
  32.     border: *brown
  33.     icon: 0 Yellow Hexagon
  34.     beam: Brown
  35.     customsound: ring.wav
  36.  
  37.   lowunique: &lowunique
  38.     <<: *basestyle
  39.     fg: *brown
  40.  
  41. blocks:
  42.   uniques:
  43.    # 100% valuable
  44.     high:
  45.       show: true
  46.       rarity: Unique
  47.       lookup: exclusive_uniques 50
  48.       <<: *highunique
  49.  
  50.     # possibly high value, multiple base items though
  51.     maybehigh:
  52.       show: true
  53.       rarity: Unique
  54.       lookup: uniques 50
  55.       <<: *medunique
  56.  
  57.     # mid value
  58.     med:
  59.       show: true
  60.       rarity: Unique
  61.       lookup: uniques 5 50
  62.       <<: *medunique
  63.  
  64.     # trash
  65.     low:
  66.       show: true
  67.       rarity: Unique
  68.       <<: *lowunique
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement