21 lines
773 B
PHP
21 lines
773 B
PHP
<?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' => '🏆'],
|
|
],
|
|
];
|