Advertisement
gamers4-lua

gs4pack.lua

Dec 5th, 2019
646
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.77 KB | None | 0 0
  1. local PCPR = elements.allocate('gamers4','PCPR')
  2.  elements.element(PCPR, elements.element(elements.DEFAULT_PT_BRMT))
  3.  elements.property(PCPR, "Gravity", 0.7)
  4.  elements.property(PCPR, "Name", 'PCPR')
  5.  elements.property(PCPR, "Description", 'Powdered copper. Conducts electricity.')
  6.  elements.property(PCPR, "Weight", 30)
  7.  elements.property(PCPR, "Color", 0xC8CC8C)
  8.  elements.property(PCPR, "Falldown", 1)
  9.  elements.property(PCPR, "Advection", 0.20)
  10.  elements.property(PCPR, "AirLoss", 0.6)
  11.  elements.property(PCPR, "HeatConduct", 20)
  12.  elements.property(PCPR, "MenuSection", elem.SC_POWDERS)
  13.  elements.property(PCPR, "Properties", elem.TYPE_SOLID + elem.PROP_CONDUCTS + elem.PROP_LIFE_DEC)
  14.  elements.property(PCPR, "MenuVisible", "1")
  15.  elements.property(PCPR, "Meltable", '1')
  16.  elements.property(PCPR, "HighTemperature", 1356.15)
  17.  elements.property(PCPR, "HighTemperatureTransition", elements.DEFAULT_PT_LAVA)
  18.  elements.property(PCPR, "Update", --*1
  19.  function(i,x,y) --1
  20.  end --*1
  21. ) --
  22.  
  23. local CPPR = elements.allocate("gamers4" , "CPPR")
  24.  elements.element(CPPR, elements.element(elements.DEFAULT_PT_IRON))
  25.  elements.property(CPPR, "Name" , "CPPR")
  26.  elements.property(CPPR, "Description" , "Copper. Conducts electricity, breaks under 6 bar pressure.")
  27.  elements.property(CPPR, "Color", 0xF7EDBE)
  28.  elements.property(CPPR, 'MenuSection', elem.SC_SOLIDS)
  29.  elements.property(CPPR, "Properties", elem.TYPE_SOLID + elem.PROP_CONDUCTS + elem.PROP_LIFE_DEC)
  30.  elements.property(CPPR, 'MenuVisible', 1)
  31.  elements.property(CPPR, "HeatConduct", 20)
  32.  elements.property(CPPR, "HighTemperature", 1356.15)
  33.  elements.property(CPPR, "HighTemperatureTransition", elements.DEFAULT_PT_LAVA)
  34.  elements.property(CPPR, "HighPressure", 6)
  35.  elements.property(CPPR, "HighPressureTransition", elements.GAMERS4_PT_PCPR)
  36.  elements.property(CPPR, "Update", --*1
  37.  function(i,x,y) --1
  38.  end --*1
  39. ) --
  40.  
  41. local GRND = elements.allocate("gamers4" , "GRND")
  42.  elements.element(GRND, elements.element(elements.DEFAULT_PT_BOMB))
  43.  elements.property(GRND, "Name" , "GRND")
  44.  elements.property(GRND, "Description" , "Grenade. Pressure sensetive. Do not heat it.")
  45.  elements.property(GRND, "Color", 0x27662A)
  46.  elements.property(GRND, "MenuSection", elem.SC_EXPLOSIVES)
  47.  elements.property(GRND, "MenuVisible", 1)
  48.  elements.property(GRND, "Gravity", 1.5)
  49.  elements.property(GRND, "HeatConduct", 15)
  50.  elements.property(GRND, "Flammable", 2)
  51.  elements.property(GRND, "Explosive", 9999)
  52.  elements.property(GRND, "HighTemperature", 315.15)
  53.  elements.property(GRND, "HighTemperatureTransition", elements.DEFAULT_PT_PLSM)
  54.  elements.property(GRND, "HighPressure", 3)
  55.  elements.property(GRND, "HighPressureTransition", elements.DEFAULT_PT_PLSM)
  56.  elements.property(GRND, "Update", --*1
  57.  function(grenad) --1
  58.  end --*1
  59. ) --
  60.  
  61. local EGG = elements.allocate("gamers4" , "EGG")
  62.  elements.element(EGG, elements.element(elements.DEFAULT_PT_SPNG))
  63.  elements.property(EGG, "Name" , "EGGZ")
  64.  elements.property(EGG, "Description" , "The most dangerous eggs you ever seen. Explodes if A BIT (!) HEATED.")
  65.  elements.property(EGG, "Color", 0xFFF7D1)
  66.  elements.property(EGG, "MenuSection", elem.SC_SPECIAL)
  67.  elements.property(EGG, "MenuVisible", 1)
  68.  elements.property(EGG, "HeatConduct", 10)
  69.  elements.property(EGG, "Flammable", 10)
  70.  elements.property(EGG, "Explosive", 9999)
  71.  elements.property(EGG, "HighTemperature", 295.16)
  72.  elements.property(EGG, "HighTemperatureTransition", elements.DEFAULT_PT_PLSM)
  73.  elements.property(EGG, "Update", --*1
  74.  function(explode) --1
  75.  end --*1
  76. ) --
  77.  
  78. local RZER = elements.allocate("gamers4" , "RZER")
  79.  elements.element(RZER, elements.element(elements.DEFAULT_PT_DEST))
  80.  elements.property(RZER, "Name" , "RZER")
  81.  elements.property(RZER, "Description" , "Razers, displaces all moving things")
  82.  elements.property(RZER, "Color", 0xD6D6D6)
  83.  elements.property(RZER, "MenuSection", elem.SC_POWDERS)
  84.  elements.property(RZER, "MenuVisible", 1)
  85.  elements.property(RZER, "Gravity", 2.5)
  86.  elements.property(RZER, "Weight", 1000)
  87.  elements.property(RZER, "HeatConduct", 10)
  88.  elements.property(RZER, "Update", --*1
  89.  function(displac) --1
  90.  end --*1
  91. ) --
  92.  
  93. local THCM = elements.allocate("gamers4" , "THCM")
  94.  elements.element(THCM, elements.element(elements.DEFAULT_PT_PLUT))
  95.  elements.property(THCM, "Name" , "Tc")
  96.  elements.property(THCM, "Description" , "Techecium. Now does nothing.")
  97.  elements.property(THCM, "Color", 0x6EEBBD)
  98.  elements.property(THCM, "MenuSection", elem.SC_RADIOACTIVE)
  99.  elements.property(THCM, "MenuVisible", "1")
  100.  elements.property(THCM, "Gravity", 1.25)
  101.  elements.property(THCM, "AirLoss", 0.6)
  102.  elements.property(THCM, "HighTemperature", 2456.15)
  103.  elements.property(THCM, "HighTemperatureTransition", elements.DEFAULT_PT_LAVA)
  104.  elements.property(THCM, "Update", --*1
  105.  function(tehnec) --1
  106.  end --*1
  107. ) --
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement