10 lines
No EOL
362 B
TypeScript
10 lines
No EOL
362 B
TypeScript
export default class CardConstants {
|
|
public static readonly ClaimCost = 10;
|
|
public static readonly TimerGiveAmount = 10;
|
|
public static readonly DailyCurrency = 100;
|
|
public static readonly StartingCurrency = 300;
|
|
|
|
// Multidrop
|
|
public static readonly MultidropCost = this.ClaimCost * 10;
|
|
public static readonly MultidropQuantity = 11;
|
|
} |