This commit is contained in:
2025-12-29 02:15:28 +01:00
parent 33482a0291
commit 3ec7c9182b
3 changed files with 68 additions and 12 deletions

20
config/community.php Normal file
View File

@@ -0,0 +1,20 @@
<?php
return [
// Points per action
'points' => [
'event_participation' => 0.1,
'event_create' => 1.0,
'forum_question' => 0.5,
'forum_answer' => 1.0,
'invite' => 0.5,
],
// Levels with thresholds and optional icons
'levels' => [
['min' => 0, 'label' => 'New Daddy', 'icon' => '🍼'],
['min' => 5, 'label' => 'Baby Daddy', 'icon' => '👶'],
['min' => 50, 'label' => 'Mini Daddy', 'icon' => '🧒'],
['min' => 150, 'label' => 'Good Daddy', 'icon' => '🧔'],
['min' => 300, 'label' => 'Master Daddy', 'icon' => '🛡️'],
['min' => 1000, 'label' => 'Daddy of Daddies','icon' => '🏆'],
],
];