diff --git a/project/assets/configs/weather.json b/project/assets/configs/weather.json index cb3c5d8a..f24c073d 100644 --- a/project/assets/configs/weather.json +++ b/project/assets/configs/weather.json @@ -105,10 +105,17 @@ "startMonth": "10", "endDay": "1", "endMonth": "11" + }, { + "seasonType": 4, + "name": "AUTUMN_LATE", + "startDay": "1", + "startMonth": "11", + "endDay": "25", + "endMonth": "11" }, { "seasonType": 2, "name": "WINTER_END", - "startDay": "1", + "startDay": "25", "startMonth": "11", "endDay": "31", "endMonth": "12" @@ -117,7 +124,14 @@ "name": "WINTER_START", "startDay": "1", "startMonth": "1", - "endDay": "24", + "endDay": "15", + "endMonth": "2" + }, { + "seasonType": 5, + "name": "SPRING_EARLY", + "startDay": "15", + "startMonth": "2", + "endDay": "25", "endMonth": "3" }, { "seasonType": 3, diff --git a/project/src/models/enums/Season.ts b/project/src/models/enums/Season.ts index b00cf7cf..41cbc85b 100644 --- a/project/src/models/enums/Season.ts +++ b/project/src/models/enums/Season.ts @@ -3,5 +3,7 @@ export enum Season { AUTUMN = 1, WINTER = 2, SPRING = 3, - STORM = 4, + AUTUMN_LATE = 4, + SPRING_EARLY = 5, + STORM = 6, }