EEI now only provides vanilla element info

This commit is contained in:
Melecie 2022-02-12 15:08:14 +08:00 committed by GitHub
parent 2a9b5e5c88
commit cc8a66c1e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 3 deletions

View File

@ -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.";