Added 2 new seasons into weather system

This commit is contained in:
Dev 2024-11-01 20:59:28 +00:00
parent abc317b862
commit 6dbe7121dd
2 changed files with 19 additions and 3 deletions

View File

@ -105,10 +105,17 @@
"startMonth": "10", "startMonth": "10",
"endDay": "1", "endDay": "1",
"endMonth": "11" "endMonth": "11"
}, {
"seasonType": 4,
"name": "AUTUMN_LATE",
"startDay": "1",
"startMonth": "11",
"endDay": "25",
"endMonth": "11"
}, { }, {
"seasonType": 2, "seasonType": 2,
"name": "WINTER_END", "name": "WINTER_END",
"startDay": "1", "startDay": "25",
"startMonth": "11", "startMonth": "11",
"endDay": "31", "endDay": "31",
"endMonth": "12" "endMonth": "12"
@ -117,7 +124,14 @@
"name": "WINTER_START", "name": "WINTER_START",
"startDay": "1", "startDay": "1",
"startMonth": "1", "startMonth": "1",
"endDay": "24", "endDay": "15",
"endMonth": "2"
}, {
"seasonType": 5,
"name": "SPRING_EARLY",
"startDay": "15",
"startMonth": "2",
"endDay": "25",
"endMonth": "3" "endMonth": "3"
}, { }, {
"seasonType": 3, "seasonType": 3,

View File

@ -3,5 +3,7 @@ export enum Season {
AUTUMN = 1, AUTUMN = 1,
WINTER = 2, WINTER = 2,
SPRING = 3, SPRING = 3,
STORM = 4, AUTUMN_LATE = 4,
SPRING_EARLY = 5,
STORM = 6,
} }