// __ _ __ // ____ / /_ (_)____/ /_ // / __ \/ __ \/ / ___/ __ \ // / /_/ / / / / (__ ) / / / // / .___/_/ /_/_/____/_/ /_/ // /_/ // // 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 = ["๐ŸŽฑ", "๐ŸŽฒ", "๐ŸŽฎ", "๐Ÿ—ฟ", "๐ŸŽท", "๐Ÿ’Ž", "๐Ÿ’ฐ", "๐Ÿ””", "๐Ÿ’€", "๐Ÿ’ฉ"] var super_exceedingly_rare_junk = ["๐Ÿ—ฝ", "๐Ÿ”ฑ", "๐Ÿ›ณ๏ธ"] var bubbles = ["ยฐ๏พŸ", "ยบ", "๏ฝก"] function aquarium(height, width) { aquariumArray = [] if (height == undefined) { height == 5 } if (width == undefined) { width = 6 } for(let i = 0; i < height; i++) { lineArr = [] var heightLine = i if (i != height-1) { for(let i = 0; i < width; i++) { if ([0,1].includes(heightLine) && Math.random()*100<7) { lineArr.push(bubbles[Math.floor(Math.random()*bubbles.length)]) } else if (Math.random()*100<10) { lineArr.push(fish_types[Math.floor(Math.random()*fish_types.length)]) } else if (Math.random()*100<2) { 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)]) } else if (Math.random()*100<2) { lineArr.push(rare_bottom_dwellers[Math.floor(Math.random()*rare_bottom_dwellers.length)]) } else if (Math.random()*100<0.5) { lineArr.push(exceedingly_rare_junk[Math.floor(Math.random()*exceedingly_rare_junk.length)]) } else if (Math.random()*100<0.25) { lineArr.push(super_exceedingly_rare_junk[Math.floor(Math.random()*super_exceedingly_rare_junk.length)]) } else { lineArr.push('ใ€€') } } } aquariumArray.push(lineArr.join('')) } return aquariumArray } module.exports = { aquarium }