Skip to main content

RingData

The data about the rings of a planet, if it has any.


RingStart

It ranges between 6000 and 12000. It increments by 1. It is of the type number.


RingsAmount

The total amount of individual asteroids within the rings. It ranges between 500 and 1250. It increments by 1. It is of the type number.


RingsEnd

It ranges between 6800 and 15000. It increments by 1. It is of the type number.


RingsType

The physical material the majority of the rings are made of. It can be any of the following strings: "Ice", "Stone".

Luau Type

This is the luau type for RingData. It may help clear up mistranslations from the raw data to the wiki page (as it is an automatic process).

type RingData = {
RingsAmount: number,
RingsEnd: number,
RingsType: "Ice" | "Stone",
RingStart: number,
}