@@ -37,6 +37,7 @@ export type EventType = { period: EventPeriod; year: number; key: Exclude<keyof
37
37
export type EventPeriod = "summer" | "halloween" | "christmas" | "easter" ;
38
38
39
39
export const EVENT_TYPES : EventType [ ] = [
40
+ { period : "easter" , year : 2025 , key : "easter2025" } ,
40
41
{ period : "christmas" , year : 2024 , key : "christmas2024" } ,
41
42
{ period : "halloween" , year : 2024 , key : "halloween2024" } ,
42
43
{ period : "summer" , year : 2024 , key : "summer2024" } ,
@@ -84,6 +85,9 @@ export class Events {
84
85
@Field ( { leaderboard : { name : "Christmas 2024" } } )
85
86
public christmas2024 : Event ;
86
87
88
+ @Field ( { leaderboard : { name : "Easter 2025" } } )
89
+ public easter2025 : Event ;
90
+
87
91
@Field ( )
88
92
public silver : number ;
89
93
@@ -99,6 +103,7 @@ export class Events {
99
103
this . summer2024 = new Event ( 25_000 , data . summer ?. [ "2024" ] ) ;
100
104
this . halloween2024 = new Event ( 10_000 , data . halloween ?. [ "2024" ] ) ;
101
105
this . christmas2024 = new Event ( 10_000 , data . christmas ?. [ "2024" ] ) ;
106
+ this . easter2025 = new Event ( 10_000 , data . easter ?. [ "2025" ] ) ;
102
107
103
108
this . silver = data . silver ;
104
109
}
0 commit comments