add: subtitle achievements

This commit is contained in:
HDVinnie
2020-04-07 17:26:35 -04:00
parent c2638d78f7
commit 6f7759a9be
13 changed files with 294 additions and 0 deletions
@@ -0,0 +1,23 @@
<?php
namespace App\Achievements;
use Gstt\Achievements\Achievement;
class UserUploaded1000Subtitles extends Achievement
{
/*
* The achievement name
*/
public $name = "UserUploaded1000Subtitles";
/*
* A small description for the achievement
*/
public $description = "You have made 1000 subtitle uploads!";
/*
* The amount of "points" this user need to obtain in order to complete this achievement
*/
public $points = 1000;
}
@@ -0,0 +1,23 @@
<?php
namespace App\Achievements;
use Gstt\Achievements\Achievement;
class UserUploaded100Subtitles extends Achievement
{
/*
* The achievement name
*/
public $name = "UserUploaded100Subtitles";
/*
* A small description for the achievement
*/
public $description = "You have made 100 subtitle uploads!";
/*
* The amount of "points" this user need to obtain in order to complete this achievement
*/
public $points = 100;
}
@@ -0,0 +1,23 @@
<?php
namespace App\Achievements;
use Gstt\Achievements\Achievement;
class UserUploaded200Subtitles extends Achievement
{
/*
* The achievement name
*/
public $name = "UserUploaded200Subtitles";
/*
* A small description for the achievement
*/
public $description = "You have made 200 subtitle uploads!";
/*
* The amount of "points" this user need to obtain in order to complete this achievement
*/
public $points = 200;
}
@@ -0,0 +1,23 @@
<?php
namespace App\Achievements;
use Gstt\Achievements\Achievement;
class UserUploaded25Subtitles extends Achievement
{
/*
* The achievement name
*/
public $name = "UserUploaded25Subtitles";
/*
* A small description for the achievement
*/
public $description = "You have made 25 subtitle uploads!";
/*
* The amount of "points" this user need to obtain in order to complete this achievement
*/
public $points = 25;
}
@@ -0,0 +1,23 @@
<?php
namespace App\Achievements;
use Gstt\Achievements\Achievement;
class UserUploaded300Subtitles extends Achievement
{
/*
* The achievement name
*/
public $name = "UserUploaded300Subtitles";
/*
* A small description for the achievement
*/
public $description = "You have made 300 subtitle uploads!";
/*
* The amount of "points" this user need to obtain in order to complete this achievement
*/
public $points = 300;
}
@@ -0,0 +1,23 @@
<?php
namespace App\Achievements;
use Gstt\Achievements\Achievement;
class UserUploaded400Subtitles extends Achievement
{
/*
* The achievement name
*/
public $name = "UserUploaded400Subtitles";
/*
* A small description for the achievement
*/
public $description = "You have made 400 subtitle uploads!";
/*
* The amount of "points" this user need to obtain in order to complete this achievement
*/
public $points = 400;
}
@@ -0,0 +1,23 @@
<?php
namespace App\Achievements;
use Gstt\Achievements\Achievement;
class UserUploaded500Subtitles extends Achievement
{
/*
* The achievement name
*/
public $name = "UserUploaded500Subtitles";
/*
* A small description for the achievement
*/
public $description = "You have made 500 subtitle uploads!";
/*
* The amount of "points" this user need to obtain in order to complete this achievement
*/
public $points = 500;
}
@@ -0,0 +1,23 @@
<?php
namespace App\Achievements;
use Gstt\Achievements\Achievement;
class UserUploaded50Subtitles extends Achievement
{
/*
* The achievement name
*/
public $name = "UserUploaded50Subtitles";
/*
* A small description for the achievement
*/
public $description = "You have made 50 subtitle uploads!";
/*
* The amount of "points" this user need to obtain in order to complete this achievement
*/
public $points = 50;
}
@@ -0,0 +1,23 @@
<?php
namespace App\Achievements;
use Gstt\Achievements\Achievement;
class UserUploaded600Subtitles extends Achievement
{
/*
* The achievement name
*/
public $name = "UserUploaded600Subtitles";
/*
* A small description for the achievement
*/
public $description = "You have made 600 subtitle uploads!";
/*
* The amount of "points" this user need to obtain in order to complete this achievement
*/
public $points = 600;
}
@@ -0,0 +1,23 @@
<?php
namespace App\Achievements;
use Gstt\Achievements\Achievement;
class UserUploaded700Subtitles extends Achievement
{
/*
* The achievement name
*/
public $name = "UserUploaded700Subtitles";
/*
* A small description for the achievement
*/
public $description = "You have made 700 subtitle uploads!";
/*
* The amount of "points" this user need to obtain in order to complete this achievement
*/
public $points = 700;
}
@@ -0,0 +1,23 @@
<?php
namespace App\Achievements;
use Gstt\Achievements\Achievement;
class UserUploaded800Subtitles extends Achievement
{
/*
* The achievement name
*/
public $name = "UserUploaded800Subtitles";
/*
* A small description for the achievement
*/
public $description = "You have made 800 subtitle uploads!";
/*
* The amount of "points" this user need to obtain in order to complete this achievement
*/
public $points = 800;
}
@@ -0,0 +1,23 @@
<?php
namespace App\Achievements;
use Gstt\Achievements\Achievement;
class UserUploaded900Subtitles extends Achievement
{
/*
* The achievement name
*/
public $name = "UserUploaded900Subtitles";
/*
* A small description for the achievement
*/
public $description = "You have made 900 subtitle uploads!";
/*
* The amount of "points" this user need to obtain in order to complete this achievement
*/
public $points = 900;
}
@@ -0,0 +1,18 @@
<?php
namespace App\Achievements;
use Gstt\Achievements\Achievement;
class UserUploadedFirstSubtitle extends Achievement
{
/*
* The achievement name
*/
public $name = "UserUploadedFirstSubtitle";
/*
* A small description for the achievement
*/
public $description = "Congratulations! You have made your first subtitle upload!";
}