Files
papa-kind-treff.info/config/community.php
2026-01-03 02:27:20 +01:00

49 lines
1.6 KiB
PHP

<?php
return [
'actions' => [
'event' => [
'create' => [
'points' => 1.5,
'caps' => ['daily' => null, 'total' => null],
'bonuses' => ['first' => 2.0],
],
'participation' => [
'points' => 0.3,
'caps' => ['daily' => 1.0, 'total' => null],
'bonuses' => ['first' => 1.0],
],
],
'forum' => [
'question' => [
'points' => 0.4,
'caps' => ['daily' => null, 'total' => null],
'bonuses' => [],
],
'answer' => [
'points' => 1.0,
'caps' => ['daily' => 5.0, 'total' => null],
'bonuses' => ['first_helpful_5' => 2.0],
],
],
'invite' => [
'points' => 0.3,
'caps' => ['daily' => null, 'total' => 5.0],
'bonuses' => [],
],
],
// Levels with thresholds and optional icons
'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'],
],
];