phishies/phish.js

57 lines
2.1 KiB
JavaScript
Raw Normal View History

2023-10-02 05:14:21 +00:00
// __ _ __
// ____ / /_ (_)____/ /_
// / __ \/ __ \/ / ___/ __ \
// / /_/ / / / / (__ ) / / /
// / .___/_/ /_/_/____/_/ /_/
// /_/
//
// https://git.supernets.org/hgw/phish
// Aquarium generator - ANOTHER SUPERNETS BANGER
// Inspired by https://botsin.space/@EmojiAquarium
var fish_types = ["🐟", "🐡", "🐠"]
var rare_swimmer_types = ["🐙", "🐬", "🦑", "🦈"]
var plant_types = ["🌱", "🌾", "🌿"]
var rare_bottom_dwellers = ["🪨", "🐌", "🏰", "🦀", "🐚", "⚓️", "☘️"]
var exceedingly_rare_junk = ["🎱", "🎲", "🎮", "🗿","🔱", "🎷", "🗽", "💎", "💰", "🔔", "💀", "💩"]
function aquarium(height, width) {
aquariumArray = []
if (height == undefined) {
height == 5
}
if (width == undefined) {
width = 6
}
for(let i = 0; i < height; i++) {
lineArr = []
if (i != height-1) {
for(let i = 0; i < width; i++) {
2023-10-02 12:40:10 +00:00
if (Math.random()*100<10) {
2023-10-02 05:14:21 +00:00
lineArr.push(fish_types[Math.floor(Math.random()*fish_types.length)])
2023-10-02 12:40:10 +00:00
} else if (Math.random()*100<2) {
2023-10-02 05:14:21 +00:00
lineArr.push(rare_swimmer_types[Math.floor(Math.random()*rare_swimmer_types.length)])
} else {
lineArr.push(' ')
}
}
}
if (i == height-1) {
for(let i = 0; i < width; i++) {
if (Math.random()*100<30) {
lineArr.push(plant_types[Math.floor(Math.random()*plant_types.length)])
2023-10-02 12:40:10 +00:00
} else if (Math.random()*100<2) {
2023-10-02 05:14:21 +00:00
lineArr.push(rare_bottom_dwellers[Math.floor(Math.random()*rare_bottom_dwellers.length)])
2023-10-02 12:40:10 +00:00
} else if (Math.random()*100<0.5) {
2023-10-02 05:14:21 +00:00
lineArr.push(exceedingly_rare_junk[Math.floor(Math.random()*exceedingly_rare_junk.length)])
} else {
lineArr.push(' ')
}
}
}
aquariumArray.push(lineArr.join(''))
}
return aquariumArray
}
module.exports = { aquarium }