Advertisement
Guest User

Untitled

a guest
Feb 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.99 KB | None | 0 0
  1. stage_rewards = {
  2.     0: {
  3.         'stage_bonus': 50,
  4.         'element_price': 1,
  5.         'combo_calc': lambda count: count * 1
  6.     },
  7.     1: {
  8.         'stage_bonus': 100,
  9.         'element_price': 0.5,
  10.         'combo_calc': lambda count: count * 1
  11.     },
  12.     2: {
  13.         'stage_bonus': 50,
  14.         'element_price': 1,
  15.         'combo_calc': lambda count: count * 1
  16.     },
  17.     3: {
  18.         'stage_bonus': 150,
  19.         'element_price': 0.5,
  20.         'combo_calc': lambda count: count * 1
  21.     },
  22.     4: {
  23.         'stage_bonus': 50,
  24.         'element_price': 1,
  25.         'combo_calc': lambda count: count * 1
  26.     },
  27.     5: {
  28.         'stage_bonus': 200,
  29.         'element_price': 0.5,
  30.         'combo_calc': lambda count: count * 1
  31.     },
  32.     6: {
  33.         'stage_bonus': 50,
  34.         'element_price': 1,
  35.         'combo_calc': lambda count: count * 1
  36.     },
  37.     7: {
  38.         'stage_bonus': 250,
  39.         'element_price': 0.5,
  40.         'combo_calc': lambda count: count * 1
  41.     },
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement