Final version of release 0.2

This commit is contained in:
Functioning Member of Society 2022-11-22 15:54:42 -05:00
parent 71d289d98e
commit e5c3ae4ba0
5 changed files with 86 additions and 9 deletions

View File

@ -34,10 +34,10 @@ minetest.register_on_joinplayer(function(player)
hud_elem_type = "text",
position = {x = 0.3, y = 0.7},
scale = {x = 0.3, y = 0.5},
text = "Test",
text = "Destruct-o-meter",
number = 0xff3c0a,
alignment = {x = 1},
offset = {x = 0, y = 46},
offset = {x = 200, y = 46},
})
end)

View File

@ -1,12 +1,35 @@
local peopleSpawned = 0
minetest.register_abm({
nodenames = {"main:bricks_stone"},
interval = 10,
chance = 340,
action = function(pos, node, active_object_count, active_object_count_wider)
if peopleSpawned < 100 then
newPos = {x = pos.x, y = pos.y + 2, z = pos.z}
local i = math.random(0, 7)
if i < 2 then
minetest.add_entity(newPos, "people:female")
else
minetest.add_entity(newPos, "people:male")
end
peopleSpawned = peopleSpawned + 1
end
end})
-- People
-- Currently only male and female.
-- No non-binary erasure intended; there just aren't that many non-binary guys in Eastern Europe.
mobs:register_mob("people:female", {
type = "monster",
passive = false,
type = "npc",
passive = true,
attack_type = "dogfight",
pathfinding = true,
reach = 2,
damage = 2,
damage = 1,
hp_min = 10,
hp_max = 15,
collisionbox =
@ -39,6 +62,59 @@ mobs:register_mob("people:female", {
fall_damage = true,
animation =
{
speed_normal = 30,
speed_run = 50,
stand_start = 0,
stand_end = 79,
walk_start = 168,
walk_end = 187,
run_start = 168,
run_end = 187,
punch_start = 200,
punch_end = 219
},
})
mobs:register_mob("people:male", {
type = "npc",
passive = true,
attack_type = "dogfight",
pathfinding = true,
reach = 2,
damage = 1,
hp_min = 10,
hp_max = 15,
collisionbox =
{
-.4, 0, -.4, .4, 2, .4
},
pushable = true,
visual = "mesh",
mesh = "character.b3d",
textures =
{
{"male_person.png"},
{"male_person1.png"},
{"male_person2.png"},
},
makes_footstep_sound = true,
sounds =
{
random = "male_noise",
},
walk_velocity = 2,
run_velocity = 8,
jump_height = 1,
stepheight = 0,
floats = 0,
view_range = 45,
fall_damage = true,
animation =
{
speed_normal = 30,

View File

@ -8,7 +8,7 @@ storyText[3] = "It didn't bother you much until last week when you were watching
storyText[4] = "The government started forcefully drafting people into the military."
storyText[5] = "You were among the first people to get their draft notice in the mail."
storyText[6] = "You were devastated when you realized that you'll be sent away to die in a war that doesn't even concern you."
storyText[7] = "\"I've got nothing to lose at this point, how about I teach those damn bastards a lesson.\", you thought to yourself."
storyText[7] = "\"I've got nothing to lose at this point, how about I teach them a lesson.\", you thought to yourself."
storyText[8] = "Click \"Next\" to generate the world."
story = {}
@ -48,7 +48,7 @@ minetest.register_on_joinplayer(function(player)
player:get_inventory():add_item("main", "more_fire:pipebomb 48")
player:get_inventory():add_item("main", "more_fire:molotov_cocktail 48")
minetest.setting_set("time_speed", 0)
minetest.set_timeofday(.21)
minetest.set_timeofday(.2)
end)
@ -58,9 +58,10 @@ minetest.register_on_newplayer(function(ObjectRef)
ObjectRef:set_pos({x = 180, y = 42, z = 145})
end)
minetest.register_on_respawnplayer(function(ObjectRef)
minetest.register_on_respawnplayer(function(player)
minetest.after(.1, function()
ObjectRef:set_pos({x = 180, y = 42, z = 145})
player:set_pos({x = 180, y = 42, z = 145})
end)
end)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB