Merge pull request #852 from DBNekonico/main

Fishing mod and added a few of my mods to mod list
This commit is contained in:
slweeb 2024-11-23 18:13:45 -05:00 committed by GitHub
commit aa67bdfef5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 522 additions and 0 deletions

View File

@ -181,6 +181,7 @@
<tr><td>bigger_star_spawners.js</td><td>Adds spawners for larger stars</td><td>Alice</td></tr>
<tr><td>bioooze_and_pyrogens.js</td><td>Adds Bio-Ooze from <a herf="https://frackinuniverse.miraheze.org/wiki/Main_Page">Frackin Universe</a> and several heat-producing materials from various games mods</td><td>Alice</td></tr>
<tr><td>boiling_things.js</td><td>Allows for various elements to be vaporized</td><td>Alice</td></tr>
<tr><td>bouncing_balls.js</td><td>Adds new types of balls that bounce accurately and roll.</td><td>Nekonico</td></tr>
<tr><td>chalcopyrite.js</td><td>Adds the chalcopyrite ore</td><td>Sophie</td></tr>
<tr><td>chem.js</td><td>Adds several chemistry and physics-related elements</td><td>lllllllllwith10ls</td></tr>
<tr><td>clf3.js</td><td>Adds Chlorine Trifluoride</td><td>Alice</td></tr>
@ -283,6 +284,7 @@
<tr><td>fantastic_creatures.js</td><td>Adds various animals</td><td>Melecie</td></tr>
<tr><td>fantasy_elements.js</td><td>Fantasy creatures and substances</td><td>pixelegend4</td></tr>
<tr><td>fey_and_more.js</td><td>Adds fairies, magic, and a lot of other things</td><td>Melecie</td></tr>
<tr><td>fishin.js</td><td>Adds a fishing rod and more fish with scientific names, press B to open bank account, A, S or D to cast your line and Q to reel it back in.</td><td>Nekonico</td></tr>
<tr><td>flowers_and_forests.js</td><td>adds trees and flowers and things to do with nature</td><td>pixelegend4 and SquareScreamYT</td></tr>
<tr><td>fwibblen.js</td><td>Adds a flying creature that turns nickel into itself, and a second creature that does the same to the first one</td><td>Alice</td></tr>
<tr><td>genetics.js</td><td>Adds an organism that evolves and changes as it creates more of itself by eating, and adapts to environment.</td><td>Nekonico</td></tr>
@ -316,6 +318,7 @@
<tr><td>collab_mod.js</td><td>Created by multiple people, adds random things</td><td>mrapple, ilikepizza, stefanblox</td></tr>
<tr><td>doom.js</td><td>As seen on TikTok - Select the Doom element to start, WASD</td><td>ggod</td></tr>
<tr><td>elem3.js</td><td>Adds all elements and combinations from Elemental 3 [Very Large]</td><td>Sophie</td></tr>
<tr><td>fishin.js</td><td>Adds a fishing rod and more fish with scientific names, press B to open bank account, A, S or D to cast your line and Q to reel it back in.</td><td>Nekonico</td></tr>
<tr><td>fools+.js</td><td>improves and makes fools.js EXTREMELY annoying.</td><td>SquareScreamYT</td></tr>
<tr><td>funny elements 2022-11-15.js</td><td>Adds a few curated randomly-generated elements</td><td>Alice</td></tr>
<tr><td>funnynames.js</td><td>Adds various ways to mess with the names of elements</td><td>nousernamefound</td></tr>

519
mods/fishin.js Normal file
View File

@ -0,0 +1,519 @@
document.onkeydown = function(ki)/*keyboard_input*/ {
//a
if (ki.keyCode == 65) {
KA = true;
//vX ++;
}
//d
if (ki.keyCode == 68) {
KD = true;
//vX ++;
}
//w
if (ki.keyCode == 81) {
KQ = true;
//vY ++;
}
//s
if (ki.keyCode == 83) {
KS = true;
//vY ++;
}
if (ki.keyCode == 66) {
KB = true;
}
}
document.onkeyup = function(i2)/*keyboard_input*/ {
//a
if (i2.keyCode == 65) {
KA = false;
//vX --;
}
//d
if (i2.keyCode == 68) {
KD = false;
//vX --;
}
//w
if (i2.keyCode == 81) {
KQ = false;
//vY = 0;
}
//s
if (i2.keyCode == 83) {
KS = false;
//vY = 0;
}
if (i2.keyCode == 66) {
KB = false;
}
}
var money = 0;
var stringAmount = 15;
var deployed = false;
var reelIn = false;
var KA = false;
var KD = false;
var KQ = false;
var KS = false;
var vX = 1;
var vY = 1;
elements.fishing_rod = {
tick: function(pixel) {
/*if (vX === 3) {
vX --;
}
if (vY === 3) {
vY --;
}*/
if (KA === true && deployed === false) {
if (isEmpty(pixel.x-vX,pixel.y)) {
createPixel("fishing_string",pixel.x-vX,pixel.y)
}
}
if (KD === true && deployed === false) {
if (isEmpty(pixel.x+vX,pixel.y)) {
createPixel("fishing_string",pixel.x+vX,pixel.y)
}
}
if (KS === true && deployed === false) {
if (isEmpty(pixel.x,pixel.y+vY)) {
createPixel("fishing_string",pixel.x,pixel.y+vX)
}
}
if (KQ === true && deployed === true) {
reelIn = true
}
if (KB === true) {
alert(`You have $${money}.`)
KB = false
}
},
color: "#a0522d",
renderer: renderPresets.WOODCHAR,
tempHigh: 400,
stateHigh: ["ember","charcoal","fire","fire","fire"],
burn: 5,
burnTime: 300,
burnInto: ["ember","charcoal","fire"],
state: "solid",
hardness: 0.15,
breakInto: "sawdust",
forceSaveColor: true,
category: "fishin",
movable: false,
}
elements.fishing_string = {
color: ["#F7F7F7","#F1F1F1"],
tick: function(pixel) {
if (pixel.value === undefined) {
pixel.value = stringAmount
}
if (isEmpty(pixel.x,pixel.y+vY) && pixel.value > 0 && reelIn === false) {
createPixel("fishing_string",pixel.x,pixel.y+vX)
pixelMap[pixel.x][pixel.y+vX].value = (pixel.value - 1)
}
else if (!isEmpty(pixel.x,pixel.y+vY,true) && pixel.value > 0 && reelIn === false) {
var nextString = pixelMap[pixel.x][pixel.y+vX]
if (elements[nextString.element].state === "liquid") {
changePixel(nextString,"fishing_string")
nextString.value = (pixel.value - 1)
}
}
if (isEmpty(pixel.x,pixel.y+vY) && pixel.value === 0 && reelIn === false) {
createPixel("hook",pixel.x,pixel.y+vX)
deployed = true
}
else if (!isEmpty(pixel.x,pixel.y+vY,true) && pixel.value === 0 && reelIn === false) {
var nextString = pixelMap[pixel.x][pixel.y+vX]
if (elements[nextString.element].state === "liquid") {
changePixel(nextString,"hook")
deployed = true
}
}
},
tempHigh: 412,
stateHigh: "fire",
burn: 5,
burnTime: 350,
burnInto: ["smoke","smoke","smoke","smoke","ash"],
category: "fishin",
state: "solid",
breakInto: "dust",
movable:false,
isString: true
}
elements.hook = {
color: "#71797e",
tick: function(pixel) {
if (!isEmpty(pixel.x,pixel.y-1,true) && reelIn === true) {
if (elements[pixelMap[pixel.x][pixel.y-1].element].isString === true || elements[pixelMap[pixel.x][pixel.y-1].element].id === elements.fish.id) {
deletePixel(pixel.x,pixel.y-1)
tryMove(pixel, pixel.x, pixel.y-1);
}
else if (elements[pixelMap[pixel.x][pixel.y-1].element].id === elements.fishing_rod.id) {
deletePixel(pixel.x,pixel.y)
reelIn = false
deployed = false
if (pixel.fishCaught) {
if (pixel.fishCaught === "fish") {
money += 1
alert(`Wow! You caught a ${pixel.fishCaught}!`)
}
else if (pixel.fishCaught === "salmon") {
money += 1
alert(`Wow! You caught a ${pixel.fishCaught}!`)
}
else if (pixel.fishCaught === "rainbow_trout") {
money += 2
alert(`Wow! You caught a ${pixel.fishCaught}!`)
}
else if (pixel.fishCaught === "bluefin_tuna") {
money += 2
alert(`Wow! You caught a ${pixel.fishCaught}!`)
}
else if (pixel.fishCaught === "albacore") {
money += 3
alert(`Wow! You caught a ${pixel.fishCaught}!`)
}
else if (pixel.fishCaught === "crab") {
money += 3
alert(`Wow! You caught a ${pixel.fishCaught}!`)
}
}
}
}
else if (!isEmpty(pixel.x+1,pixel.y,true) && reelIn === true) {
if (elements[pixelMap[pixel.x+1][pixel.y].element].id === elements.fishing_rod.id) {
deletePixel(pixel.x,pixel.y)
reelIn = false
deployed = false
if (pixel.fishCaught) {
if (pixel.fishCaught === "fish") {
money += 1
alert(`Wow! You caught a ${pixel.fishCaught}!`)
}
else if (pixel.fishCaught === "salmon") {
money += 1
alert(`Wow! You caught a ${pixel.fishCaught}!`)
}
else if (pixel.fishCaught === "rainbow_trout") {
money += 2
alert(`Wow! You caught a ${pixel.fishCaught}!`)
}
else if (pixel.fishCaught === "bluefin_tuna") {
money += 2
alert(`Wow! You caught a ${pixel.fishCaught}!`)
}
else if (pixel.fishCaught === "albacore") {
money += 3
alert(`Wow! You caught a ${pixel.fishCaught}!`)
}
else if (pixel.fishCaught === "crab") {
money += 3
alert(`Wow! You caught a ${pixel.fishCaught}!`)
}
}
}
}
else if (!isEmpty(pixel.x-1,pixel.y,true) && reelIn === true) {
if (elements[pixelMap[pixel.x-1][pixel.y].element].id === elements.fishing_rod.id) {
deletePixel(pixel.x,pixel.y)
reelIn = false
deployed = false
if (pixel.fishCaught) {
if (pixel.fishCaught === "fish") {
money += 1
alert(`Wow! You caught a ${pixel.fishCaught}!`)
}
else if (pixel.fishCaught === "salmon") {
money += 1
alert(`Wow! You caught a ${pixel.fishCaught}!`)
}
else if (pixel.fishCaught === "rainbow_trout") {
money += 2
alert(`Wow! You caught a ${pixel.fishCaught}!`)
}
else if (pixel.fishCaught === "bluefin_tuna") {
money += 2
alert(`Wow! You caught a ${pixel.fishCaught}!`)
}
else if (pixel.fishCaught === "albacore") {
money += 3
alert(`Wow! You caught a ${pixel.fishCaught}!`)
}
else if (pixel.fishCaught === "crab") {
money += 3
alert(`Wow! You caught a ${pixel.fishCaught}!`)
}
}
}
}
},
reactions: {
"fish": { elem2:null, attr1:{"fishCaught":"fish"}, chance:0.4, func: function(pixel){if (reelIn === false) { reelIn = true }}},
"salmon": { elem2:null, attr1:{"fishCaught":"salmon"}, chance:0.4, func: function(pixel){if (reelIn === false) { reelIn = true }}},
"bluefin_tuna": { elem2:null, attr1:{"fishCaught":"tuna"}, chance:0.4, func: function(pixel){if (reelIn === false) { reelIn = true }}},
"albacore": { elem2:null, attr1:{"fishCaught":"tuna"}, chance:0.4, func: function(pixel){if (reelIn === false) { reelIn = true }}},
"crab": { elem2:null, attr1:{"fishCaught":"crab"}, chance:0.4, func: function(pixel){if (reelIn === false) { reelIn = true }}},
},
tempHigh: 1455.5,
stateHigh: "molten_steel",
category: "fishin",
density: 7850,
conduct: 0.42,
hardness: 0.8,
movable: false,
}
elements.salmon = {
color: ["#C0C3CF", "#B7BAC3", "#ADB0B8"],
behavior: [
"XX|M2%5|SW:water,salt_water,sugar_water,dirty_water,seltzer,pool_water,primordial_soup%14",
"XX|FX%0.5|BO",
"M2|M1|M2 AND SW:water,salt_water,sugar_water,dirty_water,seltzer,pool_water,primordial_soup%8",
],
category: "fishin",
state: "solid",
conduct: 0.2,
eggColor: ["#e8961c","#faa82d"],
breakInto: "blood",
burn:20,
burnTime:200,
temp: 20,
tempHigh: 120,
stateHigh: "cooked_meat",
tempLow: -20,
stateLow: "frozen_fish",
reactions: {
"algae": { elem2:null, chance:0.25, func:behaviors.FEEDPIXEL },
"kelp": { elem2:"water", chance:0.025, func:behaviors.FEEDPIXEL },
"plant": { elem2:null, chance:0.125, func:behaviors.FEEDPIXEL },
"fly": { elem2:null, chance:0.4, func:behaviors.FEEDPIXEL },
"firefly": { elem2:null, chance:0.6, func:behaviors.FEEDPIXEL },
"worm": { elem2:null, chance:0.25, func:behaviors.FEEDPIXEL },
"tadpole": { elem2:null, chance:0.25, func:behaviors.FEEDPIXEL },
"oxygen": { elem2:"carbon_dioxide", chance:0.5 },
"dead_bug": { elem2:null, chance:0.2, func:behaviors.FEEDPIXEL },
"broth": { elem2:"water", chance:0.2, func:behaviors.FEEDPIXEL },
"slug": { elem2:null, chance:0.2, func:behaviors.FEEDPIXEL },
"herb": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"lettuce": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"dead_plant": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"lichen": { elem2:null, chance:0.1, func:behaviors.FEEDPIXEL },
"yeast": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"yogurt": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"tea": { elem2:null, chance:0.2, func:behaviors.FEEDPIXEL },
"meat": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"rotten_meat": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"cooked_meat": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"yolk": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"cell": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"crumb": { elem2:null, chance:0.1, func:behaviors.FEEDPIXEL },
},
desc: "Salmo salar"
}
elements.rainbow_trout = {
color: ["#D5A2B2", "#DDBBAB"],
behavior: [
"XX|M2%5|SW:water,salt_water,sugar_water,dirty_water,seltzer,pool_water,primordial_soup%14",
"XX|FX%0.5|BO",
"M2|M1|M2 AND SW:water,salt_water,sugar_water,dirty_water,seltzer,pool_water,primordial_soup%7",
],
category: "fishin",
state: "solid",
conduct: 0.2,
eggColor: ["#e8961c","#faa82d"],
breakInto: "blood",
burn:20,
burnTime:200,
temp: 20,
tempHigh: 120,
stateHigh: "cooked_meat",
tempLow: -20,
stateLow: "frozen_fish",
reactions: {
"algae": { elem2:null, chance:0.25, func:behaviors.FEEDPIXEL },
"kelp": { elem2:"water", chance:0.025, func:behaviors.FEEDPIXEL },
"plant": { elem2:null, chance:0.125, func:behaviors.FEEDPIXEL },
"fly": { elem2:null, chance:0.4, func:behaviors.FEEDPIXEL },
"firefly": { elem2:null, chance:0.6, func:behaviors.FEEDPIXEL },
"worm": { elem2:null, chance:0.25, func:behaviors.FEEDPIXEL },
"tadpole": { elem2:null, chance:0.25, func:behaviors.FEEDPIXEL },
"oxygen": { elem2:"carbon_dioxide", chance:0.5 },
"dead_bug": { elem2:null, chance:0.2, func:behaviors.FEEDPIXEL },
"broth": { elem2:"water", chance:0.2, func:behaviors.FEEDPIXEL },
"slug": { elem2:null, chance:0.2, func:behaviors.FEEDPIXEL },
"herb": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"lettuce": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"dead_plant": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"lichen": { elem2:null, chance:0.1, func:behaviors.FEEDPIXEL },
"yeast": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"yogurt": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"tea": { elem2:null, chance:0.2, func:behaviors.FEEDPIXEL },
"meat": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"rotten_meat": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"cooked_meat": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"yolk": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"cell": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"crumb": { elem2:null, chance:0.1, func:behaviors.FEEDPIXEL },
},
desc: "Salmo salar"
}
elements.bluefin_tuna = {
color: ["#3D74BA", "#4A6FB1", "#4A6FB1", "#dadbdc"],
behavior: [
"XX|M2%5|SW:water,salt_water,sugar_water,dirty_water,seltzer,pool_water,primordial_soup%14",
"XX|FX%0.5|BO",
"M2|M1|M2 AND SW:water,salt_water,sugar_water,dirty_water,seltzer,pool_water,primordial_soup%8",
],
category: "fishin",
state: "solid",
conduct: 0.2,
eggColor: ["#211316","#2C1A1D","#503734"],
breakInto: "blood",
burn:20,
burnTime:200,
temp: 20,
tempHigh: 120,
stateHigh: "cooked_meat",
tempLow: -20,
stateLow: "frozen_fish",
reactions: {
"algae": { elem2:null, chance:0.25, func:behaviors.FEEDPIXEL },
"kelp": { elem2:"water", chance:0.025, func:behaviors.FEEDPIXEL },
"plant": { elem2:null, chance:0.125, func:behaviors.FEEDPIXEL },
"fly": { elem2:null, chance:0.4, func:behaviors.FEEDPIXEL },
"firefly": { elem2:null, chance:0.6, func:behaviors.FEEDPIXEL },
"worm": { elem2:null, chance:0.25, func:behaviors.FEEDPIXEL },
"tadpole": { elem2:null, chance:0.25, func:behaviors.FEEDPIXEL },
"oxygen": { elem2:"carbon_dioxide", chance:0.5 },
"dead_bug": { elem2:null, chance:0.2, func:behaviors.FEEDPIXEL },
"broth": { elem2:"water", chance:0.2, func:behaviors.FEEDPIXEL },
"slug": { elem2:null, chance:0.2, func:behaviors.FEEDPIXEL },
"herb": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"lettuce": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"dead_plant": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"lichen": { elem2:null, chance:0.1, func:behaviors.FEEDPIXEL },
"yeast": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"yogurt": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"tea": { elem2:null, chance:0.2, func:behaviors.FEEDPIXEL },
"meat": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"rotten_meat": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"cooked_meat": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"yolk": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"cell": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"crumb": { elem2:null, chance:0.1, func:behaviors.FEEDPIXEL },
},
desc: "Thunnus thynnus"
}
elements.albacore = {
color: ["#dadbdc", "#b5b6b8", "#6b6d71"],
behavior: [
"XX|M2%5|SW:water,salt_water,sugar_water,dirty_water,seltzer,pool_water,primordial_soup%14",
"XX|FX%0.5|BO",
"M2|M1|M2 AND SW:water,salt_water,sugar_water,dirty_water,seltzer,pool_water,primordial_soup%8",
],
category: "fishin",
state: "solid",
conduct: 0.2,
eggColor: ["#211316","#2C1A1D","#503734"],
breakInto: "blood",
burn:20,
burnTime:200,
temp: 20,
tempHigh: 120,
stateHigh: "cooked_meat",
tempLow: -20,
stateLow: "frozen_fish",
reactions: {
"algae": { elem2:null, chance:0.25, func:behaviors.FEEDPIXEL },
"kelp": { elem2:"water", chance:0.025, func:behaviors.FEEDPIXEL },
"plant": { elem2:null, chance:0.125, func:behaviors.FEEDPIXEL },
"fly": { elem2:null, chance:0.4, func:behaviors.FEEDPIXEL },
"firefly": { elem2:null, chance:0.6, func:behaviors.FEEDPIXEL },
"worm": { elem2:null, chance:0.25, func:behaviors.FEEDPIXEL },
"tadpole": { elem2:null, chance:0.25, func:behaviors.FEEDPIXEL },
"oxygen": { elem2:"carbon_dioxide", chance:0.5 },
"dead_bug": { elem2:null, chance:0.2, func:behaviors.FEEDPIXEL },
"broth": { elem2:"water", chance:0.2, func:behaviors.FEEDPIXEL },
"slug": { elem2:null, chance:0.2, func:behaviors.FEEDPIXEL },
"herb": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"lettuce": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"dead_plant": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"lichen": { elem2:null, chance:0.1, func:behaviors.FEEDPIXEL },
"yeast": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"yogurt": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"tea": { elem2:null, chance:0.2, func:behaviors.FEEDPIXEL },
"meat": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"rotten_meat": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"cooked_meat": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"yolk": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"cell": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"crumb": { elem2:null, chance:0.1, func:behaviors.FEEDPIXEL },
},
desc: "Thunnus alalunga"
}
elements.crab = {
color: "#bc5a4c",
behavior: [
"XX|XX|SW:sand,water,salt_water,dirty_water,primordial_soup,blood,infection,color_sand%1 AND M2%5",
"XX|XX|SW:sand,water,salt_water,dirty_water,primordial_soup,blood,infection,color_sand%3 AND M2%10 AND BO",
"XX|M1|SW:sand,water,salt_water,dirty_water,primordial_soup,blood,infection,color_sand%4",
],
reactions: {
"algae": { elem2:null, chance:0.025, func:behaviors.FEEDPIXEL },
"kelp": { elem2:"water", chance:0.025, func:behaviors.FEEDPIXEL },
"plant": { elem2:null, chance:0.125, func:behaviors.FEEDPIXEL },
"fly": { elem2:null, chance:0.4, func:behaviors.FEEDPIXEL },
"firefly": { elem2:null, chance:0.6, func:behaviors.FEEDPIXEL },
"worm": { elem2:null, chance:0.25, func:behaviors.FEEDPIXEL },
"tadpole": { elem2:null, chance:0.25, func:behaviors.FEEDPIXEL },
"spider": { elem2:null, chance:0.25, func:behaviors.FEEDPIXEL },
"oxygen": { elem2:"carbon_dioxide", chance:0.5 },
"dead_bug": { elem2:null, chance:0.2, func:behaviors.FEEDPIXEL },
"broth": { elem2:"water", chance:0.2, func:behaviors.FEEDPIXEL },
"slug": { elem2:null, chance:0.2, func:behaviors.FEEDPIXEL },
"herb": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"lettuce": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"dead_plant": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"lichen": { elem2:null, chance:0.1, func:behaviors.FEEDPIXEL },
"yeast": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"yogurt": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"tea": { elem2:null, chance:0.2, func:behaviors.FEEDPIXEL },
"yolk": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"cell": { elem2:null, chance:0.15, func:behaviors.FEEDPIXEL },
"crumb": { elem2:null, chance:0.1, func:behaviors.FEEDPIXEL },
"alcohol": { elem1:"meat", chance:0.001 },
"water": { elem2:"bubble", attr2:{"clone":"water"}, chance:0.001, oneway:true },
"salt_water": { elem2:"bubble", attr2:{"clone":"salt_water"}, chance:0.001, oneway:true },
"pool_water": { elem1:"meat", chance:0.001 },
"chlorine": { elem1:"meat", chance:0.1 },
"vinegar": { elem1:"meat", chance:0.001 },
},
foodNeed: 20,
temp: 20,
tempHigh: 120,
stateHigh: "meat",
tempLow: -20,
stateLow: ["frozen_meat","frozen_meat","frozen_meat","frozen_fish"],
category:"fishin",
breakInto: "blood",
burn:20,
burnTime:200,
state: "solid",
density: 963.7,
conduct: 0.2,
eggColor: "#d4b98f",
desc: "Carcinus maenas"
}
elements.fish.desc = "Gadus harenae"
elements.fish.category = "fishin"