初回コミット
2
advtrains_train_jre231/depends.txt
Normal file
@ -0,0 +1,2 @@
|
||||
advtrains
|
||||
intllib?
|
281
advtrains_train_jre231/init.lua
Normal file
@ -0,0 +1,281 @@
|
||||
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("KuHa_E231", {
|
||||
mesh="advtrains_KuHa_E231.b3d",
|
||||
textures = {"advtrains_KuHa_E231.png"},
|
||||
drives_on={default=true},
|
||||
max_speed=20,
|
||||
seats = {
|
||||
{
|
||||
name=S("Driver stand"),
|
||||
attach_offset={x=0, y=8, z=18},
|
||||
view_offset={x=0, y=0, z=0},
|
||||
driving_ctrl_access=true,
|
||||
group="dstand",
|
||||
},
|
||||
{
|
||||
name="1",
|
||||
attach_offset={x=-4, y=8, z=0},
|
||||
view_offset={x=0, y=0, z=0},
|
||||
group="pass",
|
||||
},
|
||||
{
|
||||
name="2",
|
||||
attach_offset={x=4, y=8, z=0},
|
||||
view_offset={x=0, y=0, z=0},
|
||||
group="pass",
|
||||
},
|
||||
{
|
||||
name="3",
|
||||
attach_offset={x=-4, y=8, 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 = {
|
||||
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=40}, time=1},
|
||||
[1]={frames={x=80, y=120}, time=1}
|
||||
},
|
||||
close={
|
||||
[-1]={frames={x=40, y=80}, time=1},
|
||||
[1]={frames={x=120, y=160}, time=1}
|
||||
}
|
||||
},
|
||||
door_entry={-1},
|
||||
assign_to_seat_group = {"dstand", "pass"},
|
||||
visual_size = {x=1, y=1},
|
||||
wagon_span=2.5,
|
||||
is_locomotive=true,
|
||||
collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0},
|
||||
drops={"default:steelblock 4"},
|
||||
}, S("KuHa_E231"), "advtrains_KuHa_E231_inv.png")
|
||||
|
||||
advtrains.register_wagon("MoHa_E231", {
|
||||
mesh="advtrains_MoHa_E231.b3d",
|
||||
textures = {"advtrains_MoHa_E231.png"},
|
||||
drives_on={default=true},
|
||||
max_speed=20,
|
||||
seats = {
|
||||
{
|
||||
name="1",
|
||||
attach_offset={x=-4, y=8, z=8},
|
||||
view_offset={x=0, y=0, z=0},
|
||||
group="pass",
|
||||
},
|
||||
{
|
||||
name="2",
|
||||
attach_offset={x=4, y=8, z=8},
|
||||
view_offset={x=0, y=0, z=0},
|
||||
group="pass",
|
||||
},
|
||||
{
|
||||
name="1a",
|
||||
attach_offset={x=-4, y=8, z=0},
|
||||
view_offset={x=0, y=0, z=0},
|
||||
group="pass",
|
||||
},
|
||||
{
|
||||
name="2a",
|
||||
attach_offset={x=4, y=8, z=0},
|
||||
view_offset={x=0, y=0, z=0},
|
||||
group="pass",
|
||||
},
|
||||
{
|
||||
name="3",
|
||||
attach_offset={x=-4, y=8, 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=40}, time=1},
|
||||
[1]={frames={x=80, y=120}, time=1}
|
||||
},
|
||||
close={
|
||||
[-1]={frames={x=40, y=80}, time=1},
|
||||
[1]={frames={x=120, y=160}, time=1}
|
||||
}
|
||||
},
|
||||
door_entry={-1, 1},
|
||||
visual_size = {x=1, y=1},
|
||||
wagon_span=2.3,
|
||||
collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0},
|
||||
drops={"default:steelblock 4"},
|
||||
}, S("MoHa_E231"), "advtrains_MoHa_E231_inv.png")
|
||||
|
||||
advtrains.register_wagon("SaHa_E231", {
|
||||
mesh="advtrains_SaHa_E231.b3d",
|
||||
textures = {"advtrains_SaHa_E231.png"},
|
||||
drives_on={default=true},
|
||||
max_speed=20,
|
||||
seats = {
|
||||
{
|
||||
name="1",
|
||||
attach_offset={x=-4, y=8, z=8},
|
||||
view_offset={x=0, y=0, z=0},
|
||||
group="pass",
|
||||
},
|
||||
{
|
||||
name="2",
|
||||
attach_offset={x=4, y=8, z=8},
|
||||
view_offset={x=0, y=0, z=0},
|
||||
group="pass",
|
||||
},
|
||||
{
|
||||
name="1a",
|
||||
attach_offset={x=-4, y=8, z=0},
|
||||
view_offset={x=0, y=0, z=0},
|
||||
group="pass",
|
||||
},
|
||||
{
|
||||
name="2a",
|
||||
attach_offset={x=4, y=8, z=0},
|
||||
view_offset={x=0, y=0, z=0},
|
||||
group="pass",
|
||||
},
|
||||
{
|
||||
name="3",
|
||||
attach_offset={x=-4, y=8, 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=40}, time=1},
|
||||
[1]={frames={x=80, y=120}, time=1}
|
||||
},
|
||||
close={
|
||||
[-1]={frames={x=40, y=80}, time=1},
|
||||
[1]={frames={x=120, y=160}, time=1}
|
||||
}
|
||||
},
|
||||
door_entry={-1, 1},
|
||||
visual_size = {x=1, y=1},
|
||||
wagon_span=2.3,
|
||||
collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0},
|
||||
drops={"default:steelblock 4"},
|
||||
}, S("SaHa_E231"), "advtrains_SaHa_E231_inv.png")
|
||||
|
||||
advtrains.register_wagon("MoHa_E230", {
|
||||
mesh="advtrains_MoHa_E230.b3d",
|
||||
textures = {"advtrains_MoHa_E230.png"},
|
||||
drives_on={default=true},
|
||||
max_speed=20,
|
||||
seats = {
|
||||
{
|
||||
name="1",
|
||||
attach_offset={x=-4, y=8, z=8},
|
||||
view_offset={x=0, y=0, z=0},
|
||||
group="pass",
|
||||
},
|
||||
{
|
||||
name="2",
|
||||
attach_offset={x=4, y=8, z=8},
|
||||
view_offset={x=0, y=0, z=0},
|
||||
group="pass",
|
||||
},
|
||||
{
|
||||
name="1a",
|
||||
attach_offset={x=-4, y=8, z=0},
|
||||
view_offset={x=0, y=0, z=0},
|
||||
group="pass",
|
||||
},
|
||||
{
|
||||
name="2a",
|
||||
attach_offset={x=4, y=8, z=0},
|
||||
view_offset={x=0, y=0, z=0},
|
||||
group="pass",
|
||||
},
|
||||
{
|
||||
name="3",
|
||||
attach_offset={x=-4, y=8, 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=40}, time=1},
|
||||
[1]={frames={x=80, y=120}, time=1}
|
||||
},
|
||||
close={
|
||||
[-1]={frames={x=40, y=80}, time=1},
|
||||
[1]={frames={x=120, y=160}, time=1}
|
||||
}
|
||||
},
|
||||
door_entry={-1, 1},
|
||||
visual_size = {x=1, y=1},
|
||||
wagon_span=2.3,
|
||||
collisionbox = {-1.0,-0.5,-1.0, 1.0,2.5,1.0},
|
||||
drops={"default:steelblock 4"},
|
||||
}, S("MoHa_E230"), "advtrains_MoHa_E230_inv.png")
|
4
advtrains_train_jre231/locale/de.txt
Normal file
@ -0,0 +1,4 @@
|
||||
Driver Stand = Führerstand
|
||||
Japanese Train Engine = Japanische Personenzug-Lokomotive
|
||||
Default Seat = Standardsitzplatz
|
||||
Japanese Train Wagon = Japanischer Personenzug-Passagierwaggon
|
BIN
advtrains_train_jre231/models/advtrains_KuHa_E231.b3d
Normal file
BIN
advtrains_train_jre231/models/advtrains_MoHa_E230.b3d
Normal file
BIN
advtrains_train_jre231/models/advtrains_MoHa_E231.b3d
Normal file
BIN
advtrains_train_jre231/models/advtrains_SaHa_E231.b3d
Normal file
BIN
advtrains_train_jre231/textures/advtrains_KuHa_E231.png
Normal file
After Width: | Height: | Size: 438 KiB |
BIN
advtrains_train_jre231/textures/advtrains_KuHa_E231_inv.png
Normal file
After Width: | Height: | Size: 174 B |
BIN
advtrains_train_jre231/textures/advtrains_MoHa_E230.png
Normal file
After Width: | Height: | Size: 472 KiB |
BIN
advtrains_train_jre231/textures/advtrains_MoHa_E230_inv.png
Normal file
After Width: | Height: | Size: 174 B |
BIN
advtrains_train_jre231/textures/advtrains_MoHa_E231.png
Normal file
After Width: | Height: | Size: 472 KiB |
BIN
advtrains_train_jre231/textures/advtrains_MoHa_E231_inv.png
Normal file
After Width: | Height: | Size: 174 B |
BIN
advtrains_train_jre231/textures/advtrains_SaHa_E231.png
Normal file
After Width: | Height: | Size: 472 KiB |
BIN
advtrains_train_jre231/textures/advtrains_SaHa_E231_inv.png
Normal file
After Width: | Height: | Size: 174 B |