mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-01 21:12:27 +00:00
The Computer-ening (#13831)
This commit is contained in:
@@ -5,7 +5,8 @@
|
||||
/datum/computer_file/program/game/arcade
|
||||
filename = "arcadec" // File name, as shown in the file browser program.
|
||||
filedesc = "Unknown Game" // User-Friendly name. In this case, we will generate a random name in constructor.
|
||||
program_icon_state = "generic" // Icon state of this program's screen.
|
||||
program_icon_state = "game" // Icon state of this program's screen.
|
||||
program_key_icon_state = "black_key"
|
||||
extended_desc = "Fun for the whole family! Probably not an AAA title, but at least you can download it on the corporate network.." // A nice description.
|
||||
size = 2 // Size in GQ. Integers only. Smaller sizes should be used for utility/low use programs (like this one), while large sizes are for important programs.
|
||||
requires_ntnet = FALSE // This particular program does not require NTNet network conectivity...
|
||||
@@ -148,4 +149,4 @@
|
||||
player_mana += regen
|
||||
enemy_play()
|
||||
check_gameover()
|
||||
return TRUE
|
||||
return TRUE
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
/datum/computer_file/program/game/sudoku
|
||||
filename = "sudoku" // File name, as shown in the file browser program.
|
||||
filedesc = "Sudoku" // User-Friendly name. In this case, we will generate a random name in constructor.
|
||||
program_icon_state = "generic" // Icon state of this program's screen.
|
||||
program_icon_state = "sudoku" // Icon state of this program's screen.
|
||||
program_key_icon_state = "black_key"
|
||||
extended_desc = "A game of numbers, logic, and deduction. Popular for centuries to keep the mind sharp." // A nice description.
|
||||
size = 2 // Size in GQ. Integers only. Smaller sizes should be used for utility/low use programs (like this one), while large sizes are for important programs.
|
||||
requires_ntnet = FALSE // This particular program does not require NTNet network conectivity...
|
||||
@@ -207,4 +208,4 @@
|
||||
tile["highlight"] = 0
|
||||
if(full)
|
||||
cheated = FALSE
|
||||
won_game = FALSE
|
||||
won_game = FALSE
|
||||
|
||||
Reference in New Issue
Block a user