From 7a1b7fe62ee89ac27cd456c8e0b2eafd26a4a7d5 Mon Sep 17 00:00:00 2001 From: rbduck Date: Sun, 8 Mar 2020 21:51:09 +0100 Subject: very wip: new japanese train... --- moretrains_japan/init.lua | 145 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 145 insertions(+) create mode 100644 moretrains_japan/init.lua (limited to 'moretrains_japan/init.lua') diff --git a/moretrains_japan/init.lua b/moretrains_japan/init.lua new file mode 100644 index 0000000..76632e2 --- /dev/null +++ b/moretrains_japan/init.lua @@ -0,0 +1,145 @@ +local S +if minetest.get_modpath("intllib") then + S = intllib.Getter() +else + S = function(s,a,...)a={a,...}return s:gsub("@(%d+)",function(n)return a[tonumber(n)]end)end +end + +advtrains.register_wagon("moretrains_engine_japan", { + mesh="moretrains_engine_japan.obj", + textures = {"moretrains_engine_japan.png"}, + drives_on={default=true}, + max_speed=20, + seats = { + { + name=S("Driver stand"), + attach_offset={x=0, y=-2, z=13}, + view_offset={x=0, y=0, z=0}, + group="dstand", + }, + { + name="1", + attach_offset={x=-4, y=-2, z=0}, + view_offset={x=0, y=0, z=0}, + group="pass", + }, + { + name="2", + attach_offset={x=4, y=-2, z=0}, + view_offset={x=0, y=0, z=0}, + group="pass", + }, + { + name="3", + attach_offset={x=-4, y=-2, z=-8}, + view_offset={x=0, y=0, z=0}, + group="pass", + }, + { + name="4", + attach_offset={x=4, y=-2, z=-8}, + view_offset={x=0, y=0, z=0}, + group="pass", + }, + }, + seat_groups = { + dstand={ + name = "Driver Stand", + access_to = {"pass"}, + require_doors_open=true, + driving_ctrl_access=true, + }, + pass={ + name = "Passenger area", + access_to = {"dstand"}, + require_doors_open=true, + }, + }, + assign_to_seat_group = {"dstand", "pass"}, + --doors={ + -- open={ + -- [-1]={frames={x=0, y=20}, time=1}, + -- [1]={frames={x=40, y=60}, time=1} + -- }, + -- close={ + -- [-1]={frames={x=20, y=40}, time=1}, + -- [1]={frames={x=60, y=80}, time=1} + -- } + --}, + door_entry={-1.7}, + visual_size = {x=1, y=1}, + wagon_span=3.18, + is_locomotive=true, + collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, + drops={"default:steelblock 4"}, + horn_sound = "moretrains_japan_horn", +}, S("Japanese Train Engine (moretrains)"), "moretrains_engine_japan_inv.png") + +advtrains.register_wagon("moretrains_wagon_japan", { + mesh="moretrains_wagon_japan.obj", + textures = {"moretrains_wagon_japan.png"}, + drives_on={default=true}, + max_speed=20, + seats = { + { + name="1", + attach_offset={x=-4, y=-2, z=8}, + view_offset={x=0, y=0, z=0}, + group="pass", + }, + { + name="2", + attach_offset={x=4, y=-2, z=8}, + view_offset={x=0, y=0, z=0}, + group="pass", + }, + { + name="1a", + attach_offset={x=-4, y=-2, z=0}, + view_offset={x=0, y=0, z=0}, + group="pass", + }, + { + name="2a", + attach_offset={x=4, y=-2, z=0}, + view_offset={x=0, y=0, z=0}, + group="pass", + }, + { + name="3", + attach_offset={x=-4, y=-2, z=-8}, + view_offset={x=0, y=0, z=0}, + group="pass", + }, + { + name="4", + attach_offset={x=4, y=8, z=-8}, + view_offset={x=0, y=0, z=0}, + group="pass", + }, + }, + seat_groups = { + pass={ + name = "Passenger area", + access_to = {}, + require_doors_open=true, + }, + }, + assign_to_seat_group = {"pass"}, + doors={ + open={ + [-1]={frames={x=0, y=20}, time=1}, + [1]={frames={x=40, y=60}, time=1} + }, + close={ + [-1]={frames={x=20, y=40}, time=1}, + [1]={frames={x=60, y=80}, time=1} + } + }, + door_entry={-1.7, 1.7}, + visual_size = {x=1, y=1}, + wagon_span=3.0, + collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0}, + drops={"default:steelblock 4"}, +}, S("Japanese Train Wagon (moretrains)"), "moretrains_wagon_japan_inv.png") + -- cgit v1.2.3