|
13 | 13 |
|
14 | 14 | 'fursuit_catch_code_length' => env('FURSUIT_CATCH_CODE_LENGTH', 5), |
15 | 15 |
|
| 16 | + |
16 | 17 | /* |
17 | 18 | |-------------------------------------------------------------------------- |
18 | 19 | | Fursuit Catch Attempts per Minute |
19 | 20 | |-------------------------------------------------------------------------- |
20 | 21 | | |
21 | 22 | | Amount of times per 60 seconds a user can submit a Fursuit Catch Code |
22 | 23 | | in attempt to catch a fursuiter. Will respond "429 Too Many Requests" if triggered. |
23 | | - | Used to prevent bruteforcing attempts. |
| 24 | + | Used to prevent bruteforce attempts. |
24 | 25 | | |
25 | 26 | */ |
26 | 27 |
|
27 | 28 | 'fursuit_catch_attempts_per_minute' => env('FURSUIT_CATCH_ATTEMPTS_PER_MINUTE', 20), |
| 29 | + |
| 30 | + |
| 31 | + /* |
| 32 | + |-------------------------------------------------------------------------- |
| 33 | + | Fursuit Species Rarity Threshold |
| 34 | + |-------------------------------------------------------------------------- |
| 35 | + | |
| 36 | + | Fursuit Species is given a rarity based on the amount it appears among all fursuiter |
| 37 | + | If a species appear more often than the threshold, it is considered this rarity |
| 38 | + | |
| 39 | + */ |
| 40 | + |
| 41 | + 'species_rarity_threshold_common' => env('SPECIES_RARITY_THRESHOLD_COMMON', 100), |
| 42 | + 'species_rarity_threshold_uncommon' => env('SPECIES_RARITY_THRESHOLD_UNCOMMON', 50), |
| 43 | + 'species_rarity_threshold_rare' => env('SPECIES_RARITY_THRESHOLD_RARE', 20), |
| 44 | + 'species_rarity_threshold_epic' => env('SPECIES_RARITY_THRESHOLD_EPIC', 5), |
| 45 | + // If none of this applies, the species is considered legendary |
| 46 | + //'species_rarity_threshold_legendary' => env('SPECIES_RARITY_THRESHOLD_LEGENDARY', 1), |
| 47 | + |
| 48 | + |
| 49 | + /* |
| 50 | + |-------------------------------------------------------------------------- |
| 51 | + | Fursuit Species Value on catch |
| 52 | + |-------------------------------------------------------------------------- |
| 53 | + | |
| 54 | + | Sets the points granted when catching a fursuiter. |
| 55 | + | The rarer the fursuit species exists among all registered fursuits the more points it shall grant |
| 56 | + | |
| 57 | + */ |
| 58 | + |
| 59 | + 'species_rarity_value_common' => env('SPECIES_RARITY_VALUE_COMMON', 1), |
| 60 | + 'species_rarity_value_uncommon' => env('SPECIES_RARITY_VALUE_UNCOMMON', 2), |
| 61 | + 'species_rarity_value_rare' => env('SPECIES_RARITY_VALUE_RARE', 5), |
| 62 | + 'species_rarity_value_epic' => env('SPECIES_RARITY_VALUE_EPIC', 10), |
| 63 | + 'species_rarity_value_legendary' => env('SPECIES_RARITY_VALUE_LEGENDARY', 25), |
28 | 64 | ]; |
0 commit comments