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 = ["🪨", "🐌", "🏰", "🦀", "🐚", "⚓️", "☘️"]
|
2023-10-03 04:02:35 +00:00
|
|
|
|
var exceedingly_rare_junk = ["🎱", "🎲", "🎮", "🗿", "🎷", "💎", "💰", "🔔", "💀", "💩"]
|
|
|
|
|
var super_exceedingly_rare_junk = ["🗽", "🔱", "🛳️"]
|
|
|
|
|
var bubbles = ["°゚", "º", "。"]
|
2023-10-02 05:14:21 +00:00
|
|
|
|
|
|
|
|
|
function aquarium(height, width) {
|
|
|
|
|
aquariumArray = []
|
|
|
|
|
if (height == undefined) {
|
|
|
|
|
height == 5
|
|
|
|
|
}
|
|
|
|
|
if (width == undefined) {
|
|
|
|
|
width = 6
|
|
|
|
|
}
|
|
|
|
|
for(let i = 0; i < height; i++) {
|
|
|
|
|
lineArr = []
|
2023-10-03 04:02:35 +00:00
|
|
|
|
var heightLine = i
|
2023-10-02 05:14:21 +00:00
|
|
|
|
if (i != height-1) {
|
|
|
|
|
for(let i = 0; i < width; i++) {
|
2023-10-03 04:02:35 +00:00
|
|
|
|
if ([0,1].includes(heightLine) && Math.random()*100<7) {
|
|
|
|
|
lineArr.push(bubbles[Math.floor(Math.random()*bubbles.length)])
|
|
|
|
|
} else 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)])
|
2023-10-03 04:02:35 +00:00
|
|
|
|
} else if (Math.random()*100<0.25) {
|
|
|
|
|
lineArr.push(super_exceedingly_rare_junk[Math.floor(Math.random()*super_exceedingly_rare_junk.length)])
|
2023-10-02 05:14:21 +00:00
|
|
|
|
} else {
|
|
|
|
|
lineArr.push(' ')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
aquariumArray.push(lineArr.join(''))
|
|
|
|
|
}
|
|
|
|
|
return aquariumArray
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
module.exports = { aquarium }
|