diff --git a/mods/extra_element_info.js b/mods/extra_element_info.js index 9f583b03..22d751e9 100644 --- a/mods/extra_element_info.js +++ b/mods/extra_element_info.js @@ -1,7 +1,16 @@ -// Extra Element Info, v1.0 +// Extra Element Info, v1.1 // Author: MelecieDiancie -// To show extra info on the info screen, add the extraInfo variable onto an object. It's a string. +/* +=== CHANGELOG === +1.1 Version +- Removed code for extra element info, due to its addition to vanilla. It still exists as a comment if you want to check it out. + +1.0 Version ++ Initial release +*/ + +/* showInfo = (function() { var cached_function = showInfo; @@ -15,6 +24,8 @@ showInfo = (function() { }; })(); +*/ + // Everything down below is adding info to vanilla elements elements.random.extraInfo = "Produces random pixels."; @@ -22,6 +33,11 @@ elements.pick.extraInfo = "Picks a selected pixel. Works with hidden elements as elements.mix.extraInfo = "Mixes pixels in the selection box."; elements.lookup.extraInfo = "Brings up the info screen of a selected pixel."; elements.shock.extraInfo = "Produces electricity on all pixels in the selection box that can conduct it."; +elements.uncharge.extraInfo = "Removes electricity on all pixels in the selection box with electricity."; +elements.smash.extraInfo = "Crushes all elements in the selection box as if they were destroyed by an explosion."; +elements.cook.extraInfo = "Slowly heats up elements."; +elements.heat.extraInfo = "Heats up elements."; +elements.cool.extraInfo = "Cools down elements."; elements.bamboo_plant.extraInfo = "Plants a bamboo plant of variable height."; elements.sapling.extraInfo = "Plants a tree of variable height and structure."; @@ -52,7 +68,11 @@ elements.antimolten.extraInfo = "Moves in reverse."; elements.antifire.extraInfo = "Moves in reverse."; elements.antigas.extraInfo = "Moves in reverse."; elements.static.extraInfo = "Flickers in grayscale."; -elements.rainbow.extraInfo = "Flickers the rainbow's colors."; elements.gray_goo.extraInfo = "Duplicates itself when touching other pixels."; elements.virus.extraInfo = "Duplicates itself when touching other pixels."; elements.snake.extraInfo = "Goes around in a snake-like pattern."; +elements.shocker.extraInfo = "Produces sparks when powered."; +elements.pressure_plate.extraInfo = "Produces electricity when something is above it."; +elements.light_bulb.extraInfo = "Produces light when powered."; +elements.tesla_coil.extraInfo = "Produces plasma when powered."; +elements.border.extraInfo = "Produces a border effect.";