The Computer-ening (#13831)

This commit is contained in:
Wowzewow (Wezzy)
2022-06-05 05:19:33 +08:00
committed by GitHub
parent bf68049d59
commit c70f3e26cf
90 changed files with 350 additions and 202 deletions

View File

@@ -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

View File

@@ -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