Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local PCPR = elements.allocate('gamers4','PCPR')
- elements.element(PCPR, elements.element(elements.DEFAULT_PT_BRMT))
- elements.property(PCPR, "Gravity", 0.7)
- elements.property(PCPR, "Name", 'PCPR')
- elements.property(PCPR, "Description", 'Powdered copper. Conducts electricity.')
- elements.property(PCPR, "Weight", 30)
- elements.property(PCPR, "Color", 0xC8CC8C)
- elements.property(PCPR, "Falldown", 1)
- elements.property(PCPR, "Advection", 0.20)
- elements.property(PCPR, "AirLoss", 0.6)
- elements.property(PCPR, "HeatConduct", 20)
- elements.property(PCPR, "MenuSection", elem.SC_POWDERS)
- elements.property(PCPR, "Properties", elem.TYPE_SOLID + elem.PROP_CONDUCTS + elem.PROP_LIFE_DEC)
- elements.property(PCPR, "MenuVisible", "1")
- elements.property(PCPR, "Meltable", '1')
- elements.property(PCPR, "HighTemperature", 1356.15)
- elements.property(PCPR, "HighTemperatureTransition", elements.DEFAULT_PT_LAVA)
- elements.property(PCPR, "Update", --*1
- function(i,x,y) --1
- end --*1
- ) --
- local CPPR = elements.allocate("gamers4" , "CPPR")
- elements.element(CPPR, elements.element(elements.DEFAULT_PT_IRON))
- elements.property(CPPR, "Name" , "CPPR")
- elements.property(CPPR, "Description" , "Copper. Conducts electricity, breaks under 6 bar pressure.")
- elements.property(CPPR, "Color", 0xF7EDBE)
- elements.property(CPPR, 'MenuSection', elem.SC_SOLIDS)
- elements.property(CPPR, "Properties", elem.TYPE_SOLID + elem.PROP_CONDUCTS + elem.PROP_LIFE_DEC)
- elements.property(CPPR, 'MenuVisible', 1)
- elements.property(CPPR, "HeatConduct", 20)
- elements.property(CPPR, "HighTemperature", 1356.15)
- elements.property(CPPR, "HighTemperatureTransition", elements.DEFAULT_PT_LAVA)
- elements.property(CPPR, "HighPressure", 6)
- elements.property(CPPR, "HighPressureTransition", elements.GAMERS4_PT_PCPR)
- elements.property(CPPR, "Update", --*1
- function(i,x,y) --1
- end --*1
- ) --
- local GRND = elements.allocate("gamers4" , "GRND")
- elements.element(GRND, elements.element(elements.DEFAULT_PT_BOMB))
- elements.property(GRND, "Name" , "GRND")
- elements.property(GRND, "Description" , "Grenade. Pressure sensetive. Do not heat it.")
- elements.property(GRND, "Color", 0x27662A)
- elements.property(GRND, "MenuSection", elem.SC_EXPLOSIVES)
- elements.property(GRND, "MenuVisible", 1)
- elements.property(GRND, "Gravity", 1.5)
- elements.property(GRND, "HeatConduct", 15)
- elements.property(GRND, "Flammable", 2)
- elements.property(GRND, "Explosive", 9999)
- elements.property(GRND, "HighTemperature", 315.15)
- elements.property(GRND, "HighTemperatureTransition", elements.DEFAULT_PT_PLSM)
- elements.property(GRND, "HighPressure", 3)
- elements.property(GRND, "HighPressureTransition", elements.DEFAULT_PT_PLSM)
- elements.property(GRND, "Update", --*1
- function(grenad) --1
- end --*1
- ) --
- local EGG = elements.allocate("gamers4" , "EGG")
- elements.element(EGG, elements.element(elements.DEFAULT_PT_SPNG))
- elements.property(EGG, "Name" , "EGGZ")
- elements.property(EGG, "Description" , "The most dangerous eggs you ever seen. Explodes if A BIT (!) HEATED.")
- elements.property(EGG, "Color", 0xFFF7D1)
- elements.property(EGG, "MenuSection", elem.SC_SPECIAL)
- elements.property(EGG, "MenuVisible", 1)
- elements.property(EGG, "HeatConduct", 10)
- elements.property(EGG, "Flammable", 10)
- elements.property(EGG, "Explosive", 9999)
- elements.property(EGG, "HighTemperature", 295.16)
- elements.property(EGG, "HighTemperatureTransition", elements.DEFAULT_PT_PLSM)
- elements.property(EGG, "Update", --*1
- function(explode) --1
- end --*1
- ) --
- local RZER = elements.allocate("gamers4" , "RZER")
- elements.element(RZER, elements.element(elements.DEFAULT_PT_DEST))
- elements.property(RZER, "Name" , "RZER")
- elements.property(RZER, "Description" , "Razers, displaces all moving things")
- elements.property(RZER, "Color", 0xD6D6D6)
- elements.property(RZER, "MenuSection", elem.SC_POWDERS)
- elements.property(RZER, "MenuVisible", 1)
- elements.property(RZER, "Gravity", 2.5)
- elements.property(RZER, "Weight", 1000)
- elements.property(RZER, "HeatConduct", 10)
- elements.property(RZER, "Update", --*1
- function(displac) --1
- end --*1
- ) --
- local THCM = elements.allocate("gamers4" , "THCM")
- elements.element(THCM, elements.element(elements.DEFAULT_PT_PLUT))
- elements.property(THCM, "Name" , "Tc")
- elements.property(THCM, "Description" , "Techecium. Now does nothing.")
- elements.property(THCM, "Color", 0x6EEBBD)
- elements.property(THCM, "MenuSection", elem.SC_RADIOACTIVE)
- elements.property(THCM, "MenuVisible", "1")
- elements.property(THCM, "Gravity", 1.25)
- elements.property(THCM, "AirLoss", 0.6)
- elements.property(THCM, "HighTemperature", 2456.15)
- elements.property(THCM, "HighTemperatureTransition", elements.DEFAULT_PT_LAVA)
- elements.property(THCM, "Update", --*1
- function(tehnec) --1
- end --*1
- ) --
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement