diff --git a/computer/computers.lua b/computer/computers.lua index 5a7fed40..b9d3dc47 100644 --- a/computer/computers.lua +++ b/computer/computers.lua @@ -153,6 +153,19 @@ computer.register("computer:admiral128", { }) }) +-- XBox lookalike +computer.register("computer:hueg_box", { + description = "HUEG Box", + tiles_off = { }, + node_box = computer.pixelnodebox(16, { + -- X Y Z W H L + { 0, 0, 7, 16, 6, 9 }, -- Console + { 2, 0, 1, 11, 3, 6 }, -- Controller + { 2, 0, 0, 2, 3, 1 }, + { 11, 0, 0, 2, 3, 1 }, + }) +}) + -- Generic Flat Screen LCD (16x9) with keyboard local mo_sbox = { type = "fixed", diff --git a/computer/textures/computer_hueg_box_bk.png b/computer/textures/computer_hueg_box_bk.png new file mode 100644 index 00000000..d0dbb84a Binary files /dev/null and b/computer/textures/computer_hueg_box_bk.png differ diff --git a/computer/textures/computer_hueg_box_bt.png b/computer/textures/computer_hueg_box_bt.png new file mode 100644 index 00000000..631736a8 Binary files /dev/null and b/computer/textures/computer_hueg_box_bt.png differ diff --git a/computer/textures/computer_hueg_box_ft.png b/computer/textures/computer_hueg_box_ft.png new file mode 100644 index 00000000..dbd86813 Binary files /dev/null and b/computer/textures/computer_hueg_box_ft.png differ diff --git a/computer/textures/computer_hueg_box_lt.png b/computer/textures/computer_hueg_box_lt.png new file mode 100644 index 00000000..bf206925 Binary files /dev/null and b/computer/textures/computer_hueg_box_lt.png differ diff --git a/computer/textures/computer_hueg_box_rt.png b/computer/textures/computer_hueg_box_rt.png new file mode 100644 index 00000000..19f06cec Binary files /dev/null and b/computer/textures/computer_hueg_box_rt.png differ diff --git a/computer/textures/computer_hueg_box_tp.png b/computer/textures/computer_hueg_box_tp.png new file mode 100644 index 00000000..543d262a Binary files /dev/null and b/computer/textures/computer_hueg_box_tp.png differ