This commit is contained in:
Andrew-71 2023-07-18 22:21:18 +03:00
parent b84144d3aa
commit c267275ce7
5 changed files with 7 additions and 6 deletions

View file

@ -1,7 +1,8 @@
{
"variants": {
"": {
"model": "tardim_ic:block/tardim_dock"
}
"facing=north": { "model": "tardim_ic:block/tardim_dock"},
"facing=east": { "model": "tardim_ic:block/tardim_dock", "y": 90},
"facing=south": { "model": "tardim_ic:block/tardim_dock", "y": 180},
"facing=west": { "model": "tardim_ic:block/tardim_dock", "y": 270}
}
}

View file

@ -1,5 +1,5 @@
{
"credit": "Made by karoter2 with Blockbench",
"credit": "Made by karoter2 (Feulim)",
"parent": "digital_tardim_interface",
"texture_size": [64, 64],
"textures": {

View file

@ -1,5 +1,5 @@
{
"credit": "Made by karoter2 with Blockbench",
"credit": "Made by karoter2 (Feulim)",
"parent": "block/cube_all",
"ambientocclusion": false,
"textures": {

View file

@ -1,5 +1,5 @@
{
"credit": "Made by karoter2 with Blockbench",
"credit": "Made by karoter2 (Feulim)",
"texture_size": [64, 64],
"textures": {
"1": "tardim_ic:blocks/tardim_dock",

View file

@ -0,0 +1,12 @@
-- This is a very basic test script
-- This basically just verifies the mod works
local int = peripheral.find("digital_tardim_interface")
if int == nil then
error("No interface found")
end
print(int.getOwnerName() .. "'s TARDIM")
print("FUEL: " .. int.getFuel() .. "/100")
print("IN FLIGHT? " .. int.isInFlight())
print("IS LOCKED? " .. int.isLocked())