forked from tgstation/tgstation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds achievement metadata table (tgstation#48007)
* Renames hub_id to database_id Adds achievement_metadata table. * Fixups * enum
- Loading branch information
1 parent
f24450a
commit f28b2d6
Showing
10 changed files
with
112 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,44 @@ | ||
/datum/award/score/tendril_score | ||
name = "Tendril Score" | ||
desc = "Watch your step" | ||
hub_id = TENDRIL_CLEAR_SCORE | ||
database_id = TENDRIL_CLEAR_SCORE | ||
|
||
/datum/award/score/boss_score | ||
name = "Bosses Killed" | ||
desc = "You've killed HOW many?" | ||
hub_id = BOSS_SCORE | ||
database_id = BOSS_SCORE | ||
|
||
/datum/award/score/blood_miner_score | ||
name = "Blood-Drunk Miners Killed" | ||
desc = "You've killed HOW many?" | ||
hub_id = MINER_SCORE | ||
database_id = MINER_SCORE | ||
|
||
/datum/award/score/bubblegum_score | ||
name = "Bubblegums Killed" | ||
desc = "You've killed HOW many?" | ||
hub_id = BUBBLEGUM_SCORE | ||
database_id = BUBBLEGUM_SCORE | ||
|
||
/datum/award/score/colussus_score | ||
name = "Colossus Killed" | ||
desc = "You've killed HOW many?" | ||
hub_id = COLOSSUS_SCORE | ||
database_id = COLOSSUS_SCORE | ||
|
||
/datum/award/score/drake_score | ||
name = "Drakes Killed" | ||
desc = "You've killed HOW many?" | ||
hub_id = DRAKE_SCORE | ||
database_id = DRAKE_SCORE | ||
|
||
/datum/award/score/hierophant_score | ||
name = "Hierophants Killed" | ||
desc = "You've killed HOW many?" | ||
hub_id = HIEROPHANT_SCORE | ||
database_id = HIEROPHANT_SCORE | ||
|
||
/datum/award/score/legion_score | ||
name = "Legions Killed" | ||
desc = "You've killed HOW many?" | ||
hub_id = LEGION_SCORE | ||
database_id = LEGION_SCORE | ||
|
||
/datum/award/score/swarmer_beacon_score | ||
name = "Swarmer Beacons Killed" | ||
desc = "You've killed HOW many?" | ||
hub_id = SWARMER_BEACON_SCORE | ||
database_id = SWARMER_BEACON_SCORE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters