This commit is contained in:
2025-12-30 01:22:35 +01:00
parent b919cb91e0
commit ee8a03238c

View File

@@ -2,19 +2,33 @@
return [ return [
// Points per action // Points per action
'points' => [ 'points' => [
'event_participation' => 0.1, 'event_participation' => 0.3, // war 0.1
'event_create' => 1.0, 'event_create' => 1.5, // war 1.0
'forum_question' => 0.5, 'forum_question' => 0.4, // leicht runter
'forum_answer' => 1.0, 'forum_answer' => 1.0, // bleibt Leitwert
'invite' => 0.5, '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 with thresholds and optional icons
'levels' => [ 'levels' => [
['min' => 0, 'label' => 'New Daddy', 'icon' => '🍼'], ['min' => 0, 'label' => 'Neuer Vater'],
['min' => 5, 'label' => 'Baby Daddy', 'icon' => '👶'], ['min' => 5, 'label' => 'Ankommender Vater'],
['min' => 50, 'label' => 'Mini Daddy', 'icon' => '🧒'], ['min' => 25, 'label' => 'Aktiver Vater'],
['min' => 150, 'label' => 'Good Daddy', 'icon' => '🧔'], ['min' => 75, 'label' => 'Engagierter Vater'],
['min' => 300, 'label' => 'Master Daddy', 'icon' => '🛡️'], ['min' => 150, 'label' => 'Unterstützender Vater'],
['min' => 1000, 'label' => 'Daddy of Daddies','icon' => '🏆'], ['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'],
],
]; ];