Compare commits

...

3 Commits

Author SHA1 Message Date
hgw
baf4bc279d
Bump version to 1.0.2 2023-10-02 12:40:39 +00:00
hgw
a60e51b85e
Adjust probabilities 2023-10-02 12:40:10 +00:00
hgw
b664758498
Bump version to 1.0.1 2023-10-02 12:32:22 +00:00
3 changed files with 7 additions and 7 deletions

2
package-lock.json generated
View File

@ -1,5 +1,5 @@
{
"name": "phishies",
"version": "1.0.0",
"version": "1.0.2",
"lockfileVersion": 1
}

View File

@ -1,11 +1,11 @@
{
"name": "phishies",
"version": "1.0.0",
"version": "1.0.2",
"description": "Node.js aquarium generator module",
"main": "phish.js",
"repository": {
"type": "git",
"url": "https://git.supernets.org/hgw/phish2.git"
"url": "https://git.supernets.org/hgw/phishies.git"
},
"author": "hgw",
"license": "ISC",

View File

@ -27,9 +27,9 @@ function aquarium(height, width) {
lineArr = []
if (i != height-1) {
for(let i = 0; i < width; i++) {
if (Math.random()*100<13) {
if (Math.random()*100<10) {
lineArr.push(fish_types[Math.floor(Math.random()*fish_types.length)])
} else if (Math.random()*100<3) {
} else if (Math.random()*100<2) {
lineArr.push(rare_swimmer_types[Math.floor(Math.random()*rare_swimmer_types.length)])
} else {
lineArr.push(' ')
@ -40,9 +40,9 @@ function aquarium(height, width) {
for(let i = 0; i < width; i++) {
if (Math.random()*100<30) {
lineArr.push(plant_types[Math.floor(Math.random()*plant_types.length)])
} else if (Math.random()*100<20) {
} else if (Math.random()*100<2) {
lineArr.push(rare_bottom_dwellers[Math.floor(Math.random()*rare_bottom_dwellers.length)])
} else if (Math.random()*100<1) {
} else if (Math.random()*100<0.5) {
lineArr.push(exceedingly_rare_junk[Math.floor(Math.random()*exceedingly_rare_junk.length)])
} else {
lineArr.push(' ')