Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2019
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.63 KB | None | 0 0
  1. #####  VP ITEMS ######
  2. #Item ID / Time / Price
  3. vpMultiCoupons = [
  4.     [2450128, 60, 2], #2x Exp 60 Min
  5.     [2450113, 120, 3], #2x Exp 120 Min
  6.     [2023072, 30, 2], #2x Drop 30 Min
  7.     [2023132, 60, 3], #2x Drop 60 Min
  8.     [2022459, 60, 2], #Cassandras Reward 1
  9.     [2022459, 60, 4], #Cassandras Reward 2
  10.     [2022459, 60, 6], #Cassandras Reward 3
  11.     [2022459, 60, 8], #Cassandras Reward 4
  12.     [2022459, 60, 10]] #Cassandras Reward 5
  13.  
  14. #Item ID / Price
  15. vpCosmetics = [
  16.     [5150040, 2], #Royal Hair
  17.     [5152053, 2], #Royal Face
  18.     [2435163, 6]] #Damage Skin
  19.  
  20. vpGameChangers = [
  21.     [2500000, 15], #SP Reset
  22.     [2501000, 15], #AP Reset
  23.     [5550001, 20], #7 Day Pendant Slot
  24.     [2350003, 25], #Character Slot
  25.     [2350002, 50]] #Name Change
  26.  
  27. #####  DP ITEMS ######
  28. #Item ID / Time / Price
  29. dpMultiCoupons = [
  30.     [2450128, 60, 100], #2x Exp 60 Min
  31.     [2450113, 120, 150], #2x Exp 120 Min
  32.     [2023072, 30, 100], #2x Drop 30 Min
  33.     [2023132, 60, 150], #2x Drop 60 Min
  34.     [2022459, 60, 100], #Cassandras Reward 1
  35.     [2022459, 60, 100], #Cassandras Reward 2
  36.     [2022459, 60, 100], #Cassandras Reward 3
  37.     [2022459, 60, 100], #Cassandras Reward 4
  38.     [2022459, 60, 100]] #Cassandras Reward 5
  39.  
  40. #Item ID / Price
  41. dpCosmetics = [
  42.     [5150040, 100], #Royal Hair
  43.     [5152053, 100], #Royal Face
  44.     [5552000, 200], #Hair Slot
  45.     [5553000, 200], #Face Slot
  46.     [2435163, 250]] #Damage Skin
  47.  
  48. dpGameChangers = [
  49.     [2500000, 15], #SP Reset
  50.     [2501000, 15], #AP Reset
  51.     [5550001, 20], #7 Day Pendant Slot
  52.     [2350003, 25], #Character Slot
  53.     [2350002, 50]] #Name Change
  54.  
  55. dpPetShop = [
  56.     [5068300, 750]] # Pet Box
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement