diff --git a/config/community.php b/config/community.php index 3b4c0e6..de26205 100644 --- a/config/community.php +++ b/config/community.php @@ -2,19 +2,33 @@ return [ // Points per action 'points' => [ - 'event_participation' => 0.1, - 'event_create' => 1.0, - 'forum_question' => 0.5, - 'forum_answer' => 1.0, - 'invite' => 0.5, + 'event_participation' => 0.3, // war 0.1 + 'event_create' => 1.5, // war 1.0 + 'forum_question' => 0.4, // leicht runter + 'forum_answer' => 1.0, // bleibt Leitwert + 'invite' => 0.3, // etwas entschärft +], + 'caps' => [ + 'event_participation_per_day' => 1.0, + 'forum_answer_per_day' => 5.0, + 'invite_total' => 5.0, ], + 'bonuses' => [ + 'first_event_join' => 1.0, + 'first_event_create' => 2.0, + 'first_helpful_5' => 2.0, +], // 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' => '🏆'], - ], +'levels' => [ + ['min' => 0, 'label' => 'Neuer Vater'], + ['min' => 5, 'label' => 'Ankommender Vater'], + ['min' => 25, 'label' => 'Aktiver Vater'], + ['min' => 75, 'label' => 'Engagierter Vater'], + ['min' => 150, 'label' => 'Unterstützender Vater'], + ['min' => 300, 'label' => 'Erfahrener Vater'], + ['min' => 500, 'label' => 'Mentor-Vater'], + ['min' => 750, 'label' => 'Community-Vater'], + ['min' => 1000, 'label' => 'Säule der Väter-Community'], + ['min' => 1500, 'label' => 'Vater der Gemeinschaft'], +], ];