59 lines
3.1 KiB
JavaScript
59 lines
3.1 KiB
JavaScript
// Extra Element Info, v1.0
|
|
// Author: MelecieDiancie
|
|
|
|
// To show extra info on the info screen, add the extraInfo variable onto an object. It's a string.
|
|
|
|
showInfo = (function() {
|
|
var cached_function = showInfo;
|
|
|
|
return function() {
|
|
// your code
|
|
|
|
var result = cached_function.apply(this, arguments); // use .apply() to call it
|
|
if (info.extraInfo != undefined) { infoText.innerHTML += "\n\n" + info.extraInfo; }
|
|
return result;
|
|
};
|
|
})();
|
|
|
|
// Everything down below is adding info to vanilla elements
|
|
|
|
elements.random.extraInfo = "Produces random pixels.";
|
|
elements.pick.extraInfo = "Picks a selected pixel. Works with hidden elements as well.";
|
|
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.bamboo_plant.extraInfo = "Plants a bamboo plant of variable height.";
|
|
elements.sapling.extraInfo = "Plants a tree of variable height and structure.";
|
|
elements.grass_seed.extraInfo = "Plants grass of variable height.";
|
|
elements.wheat_seed.extraInfo = "Plants wheat of variable height.";
|
|
elements.flower_seed.extraInfo = "Plants a flower of variable height.";
|
|
elements.vine.extraInfo = "Holds onto a surface and grows downwards.";
|
|
elements.mushroom_spore.extraInfo = "Plants a mushroom of variable height and structure.";
|
|
elements.corn_seed.extraInfo = "Plants corn of variable height.";
|
|
elements.potato_seed.extraInfo = "Digs through dirt and creates potatoes.";
|
|
elements.grass_seed.extraInfo = "Plants grass of variable height.";
|
|
elements.electric.extraInfo = "Produces a brief electrical spark.";
|
|
elements.neon.extraInfo = "Glows when powered.";
|
|
elements.led_r.extraInfo = "Lights up when powered.";
|
|
elements.led_g.extraInfo = "Lights up when powered.";
|
|
elements.led_b.extraInfo = "Lights up when powered.";
|
|
elements.ecloner.extraInfo = "Clones the first pixel that touches it when powered.";
|
|
elements.cloner.extraInfo = "Clones the first pixel that touches it.";
|
|
elements.slow_cloner.extraInfo = "Clones the first pixel that touches it.";
|
|
elements.clone_powder.extraInfo = "Clones the first pixel that touches it.";
|
|
elements.floating_cloner.extraInfo = "Clones the first pixel that touches it.";
|
|
elements.filler.extraInfo = "Fills the entire screen orthogonally.";
|
|
elements.lattice.extraInfo = "Fills the entire screen diagonally.";
|
|
elements.battery.extraInfo = "Produces electricity.";
|
|
elements.antipowder.extraInfo = "Moves in reverse.";
|
|
elements.antifluid.extraInfo = "Moves in reverse.";
|
|
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.";
|