# .font: font.text_2
2023-11-03 09:49 altermaven  
# .font: font.text_1
No safety bunker to the left or right, no crawlspace, now you have to deal with falling "lemons"...  
  
Peridot is a yellowish-green transparent variety of olivine. also referred to as chrysolite, it is one of the very few gemstones that do not have more than one color. however, the intensity of the green lies soley on how much iron is present in the mineral, meaning peridot can be seen as almost yellow to a greenish, emerald-like color.  
  
it is isomorphic olivine with magnesium, iron and silicate in a orthorhombic structure.  
  
while olivine is abundant, peridot is rare due to chemical instability. since peridot shares a common thread with forsterite, which is magnesium-rich olivine, finding a large enough peridot to form into a gem is quite rare; because of this, peridot is precious.  
  
the type of peridot represented here is the common yellowish-green variety.  
  
it has a mohs hardness of 6.

# .font: font.text_2
2023-11-03 11:14 DarkStoorM  
# .font: font.text_1
What an interesting slime pattern. A little observation will save ^ from getting crushed

# .font: font.text_2
2023-11-03 12:06 altermaven  
# .font: font.text_1
that it eventually just switches to a slow cascading from right to left was not the original intention, but seeing it happen just made me want to leave it as is!

# .font: font.text_2
2023-11-04 01:49 dustin  
# .font: font.text_1
wow, what an amazing pattern indeed! :d  
the slime behaviour is supposed to be (pseudo-) random generated, and yet such a regular pattern! i made a quick mathematical analysis to see how that works:  
  
| 5*38=190 slimes in the cave  
| cycle length of the rng: 73*13=949 (73 and 13 being the impermeability numbers!)  
  
and 5*190=949+1, which means that if a particular slime gets the rng value x in frame y, then the left neighbor gets the same value x in frame y+5.   
simpler said: whwnever a slime swallows, its left neighbor will swallow 5 frames later! :d  
  
with similar math, similar patterns should be possible to create!  
a generalized version of the above equation is:  
  
f * s = 949 - d  
  
if s is the total slime count in the cave, then this equation means that whenever slime x is active, then slime x+d will be active f frames later.   
  
this offers a lot of interesting possibilities, to say the least! :d

# .font: font.text_2
2023-11-04 23:42 altermaven  
# .font: font.text_1
and to think all of this was unintended at the start, but I wonder if things would be different if the permeability was a little more or less?

# .font: font.text_2
2023-11-05 15:58 dustin  
# .font: font.text_1
 altermaven : well, the equation below is independant of the permeability. with permeability 8, for example, there would of course be fewer swallows in total, but the rule "whenever a slime is active, then its left neighbor will be active 5 frames later" would still hold!

# .font: font.text_2
2023-11-06 16:11 altermaven  
# .font: font.text_1
interesting!