You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!--The comments for this section of the docs are not scientifically accurate.-->
246
+
<!--As the documentation that mentions how the phases follow one another is wrong.-->
247
+
<!---->
248
+
<!--```rs-->
249
+
<!--/// The fullness of the moon controls various mob behaviors such as the number of slimes-->
250
+
<!--/// that spawn in Swamp biomes, the chance skeletons and zombies have to spawn with armor,-->
251
+
<!--/// as well as the chance for spiders to spawn with certain status effects.-->
252
+
<!--pub enum MoonPhase {-->
253
+
<!--/// The darkest moon phase.-->
254
+
<!--/// This phase follows the Waning Crescent.-->
255
+
<!--NewMoon = 4,-->
256
+
<!---->
257
+
<!--/// The phase following the New Moon.-->
258
+
<!--WaxingCrecent = 5,-->
259
+
<!---->
260
+
<!--/// The phase following the Waxing Crescent.-->
261
+
<!--FirstQuarter = 2,-->
262
+
<!---->
263
+
<!--/// The phase following the First Quarter.-->
264
+
<!--WaxingGibbous = 7,-->
265
+
<!---->
266
+
<!--/// The brightest moon phase.-->
267
+
<!--/// This phase follows the Waxing Gibbous.-->
268
+
<!--/// During this phase, cats have a 50% chance of spawning as black cats.-->
269
+
<!--FullMoon = 0,-->
270
+
<!---->
271
+
<!--/// The phase following the Full Moon.-->
272
+
<!--WaningGibbous = 1,-->
273
+
<!---->
274
+
<!--/// The phase following the Waning Gibbous.-->
275
+
<!--LastQuarter = 6,-->
276
+
<!---->
277
+
<!--/// The phase following the Last Quarter.-->
278
+
<!--WaningCrecent = 3,-->
279
+
<!-- } -->
280
+
<!--```-->
281
+
<!---->
282
+
<!--This is how we have it documented in Spadix, with corrected comments based off of this [Nasa Website](https://science.nasa.gov/moon/moon-phases/).-->
283
+
<!---->
284
284
## A Note about Spadix
285
285
286
286
Though this may be the first time this name has ever been brought up. We have all of the stable AddOn JSON format parsed and documented inside of the Spadix codebase. Our intension is to provide documentation that is cohesive and without duplication. Spadix is not just for documentation, rather it's something that is able to take advantage of the AddOn format programmatically.
0 commit comments