Compare commits
27 Commits
Author | SHA1 | Date | |
---|---|---|---|
3ae2529c9f | |||
a6779e7911 | |||
357cc3aada | |||
6b2f83e8e3 | |||
babb15262d | |||
19b8ea4028 | |||
1869d4b0c3 | |||
c95eb77a4e | |||
6757013da2 | |||
5845d3682d | |||
e8f938bd2c | |||
3bc7ed06e2 | |||
2d280a5a1e | |||
9417629f51 | |||
8eaf8edb4c | |||
bcdd82980b | |||
3ca25f7ec4 | |||
52f4c52271 | |||
2ebefb332f | |||
bda0db7c04 | |||
2b535ee887 | |||
afee335dc2 | |||
5da2f3060a | |||
1ff3bb0041 | |||
41b8c3e343 | |||
941bfc27f9 | |||
f991b676f4 |
1
.gitignore
vendored
@ -4,7 +4,6 @@
|
||||
*bak*
|
||||
tags
|
||||
*.vim
|
||||
armor.conf
|
||||
|
||||
## Eclipse project files & directories
|
||||
.project
|
||||
|
@ -694,9 +694,6 @@ armor.equip = function(self, player, itemstack)
|
||||
index = i
|
||||
end
|
||||
end
|
||||
if not index then -- armor inventory is full with other armor elements
|
||||
return itemstack
|
||||
end
|
||||
local stack = itemstack:take_item()
|
||||
armor_inv:set_stack("armor", index, stack)
|
||||
self:run_callbacks("on_equip", player, index, stack)
|
||||
|
37
3d_armor/armor.conf
Executable file
@ -0,0 +1,37 @@
|
||||
-- Armor Configuration (defaults)
|
||||
|
||||
-- Increase this if you get initialization glitches when a player first joins.
|
||||
ARMOR_INIT_DELAY = 3
|
||||
|
||||
-- Number of initialization attempts.
|
||||
-- Use in conjunction with ARMOR_INIT_DELAY if initialization problems persist.
|
||||
ARMOR_INIT_TIMES = 3
|
||||
|
||||
-- Increase this if armor is not getting into bones due to server lag.
|
||||
ARMOR_BONES_DELAY = 3
|
||||
|
||||
-- How often player armor/wield items are updated.
|
||||
ARMOR_UPDATE_TIME = 1
|
||||
|
||||
-- Drop armor when a player dies.
|
||||
-- Uses bones mod if present, otherwise items are dropped around the player.
|
||||
ARMOR_DROP = true
|
||||
|
||||
-- Pulverise armor when a player dies, overrides ARMOR_DROP.
|
||||
ARMOR_DESTROY = false
|
||||
|
||||
-- You can use this to increase or decrease overall armor effectiveness,
|
||||
-- eg: ARMOR_LEVEL_MULTIPLIER = 0.5 will reduce armor level by half.
|
||||
ARMOR_LEVEL_MULTIPLIER = 1
|
||||
|
||||
-- You can use this to increase or decrease overall armor healing,
|
||||
-- eg: ARMOR_HEAL_MULTIPLIER = 0 will disable healing altogether.
|
||||
ARMOR_HEAL_MULTIPLIER = 1
|
||||
|
||||
-- You can also use this file to execute arbitary lua code
|
||||
-- eg: Dumb the armor down if using Simple Mobs
|
||||
--if minetest.get_modpath("mobs") then
|
||||
-- ARMOR_LEVEL_MULTIPLIER = 1
|
||||
-- ARMOR_HEAL_MULTIPLIER = 0
|
||||
--end
|
||||
|
@ -500,3 +500,5 @@ if armor.config.fire_protect == true then
|
||||
return hp_change
|
||||
end, true)
|
||||
end
|
||||
|
||||
minetest.log("action", "[3d_armor] loaded.")
|
||||
|
@ -1,7 +1,7 @@
|
||||
# textdomain: 3d_armor
|
||||
Radiation=Излучение
|
||||
Level=Уровень
|
||||
Heal=Исцеление
|
||||
Fire=Пламя
|
||||
Your @1 is almost broken!=Ваш предмет «@1» почти сломан!
|
||||
Your @1 got destroyed!=Ваш предмет «@1» был уничтожен!
|
||||
Radiation=излучение
|
||||
Level=уровень
|
||||
Heal=исцеление
|
||||
Fire=огонь
|
||||
Your @1 is almost broken!=
|
||||
Your @1 got destroyed!=твой(и) @1 был(и) разрушен(ы)!
|
||||
|
@ -1,7 +0,0 @@
|
||||
# textdomain: 3d_armor
|
||||
Radiation=Радіація
|
||||
Level=Рівень
|
||||
Heal=Зцілення
|
||||
Fire=Вогонь
|
||||
Your @1 is almost broken!=Ваш @1 майже зламаний!
|
||||
Your @1 got destroyed!=Ваш(і) @1 був(ли) зламаний(і)!
|
Before Width: | Height: | Size: 349 B After Width: | Height: | Size: 339 B |
Before Width: | Height: | Size: 571 B After Width: | Height: | Size: 544 B |
@ -1,3 +0,0 @@
|
||||
# textdomain: 3d_armor_ip
|
||||
Back=Назад
|
||||
Armor=Броня
|
@ -1,3 +0,0 @@
|
||||
# textdomain: 3d_armor_ip
|
||||
Back=Назад
|
||||
Armor=Броня
|
@ -15,7 +15,7 @@ sfinv.register_page("3d_armor:armor", {
|
||||
end
|
||||
})
|
||||
armor:register_on_update(function(player)
|
||||
if sfinv.enabled and sfinv.get_page(player) == "3d_armor:armor" then
|
||||
if sfinv.enabled then
|
||||
sfinv.set_player_inventory_formspec(player)
|
||||
end
|
||||
end)
|
||||
|
@ -1,2 +0,0 @@
|
||||
# textdomain: 3d_armor_sfinv
|
||||
Armor=Броня
|
@ -1,2 +0,0 @@
|
||||
# textdomain: 3d_armor_sfinv
|
||||
Armor=Броня
|
@ -443,3 +443,5 @@ minetest.register_craft({
|
||||
{"3d_armor_stand:armor_stand", "default:copper_ingot"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.log("action", "[3d_armor_stand] loaded.")
|
||||
|
@ -1,6 +1,5 @@
|
||||
# textdomain: 3d_armor_stand
|
||||
Armor Stand Top=Верх Стойки для Брони
|
||||
Armor Stand=Стойка для Брони
|
||||
Locked Armor Stand=Заблокированная Стойка для Брони
|
||||
Shared Armor Stand=Публичная Стойка для Брони
|
||||
Armor Stand (owned by @1)=Стойка для Брони (владалец: @1)
|
||||
Armor Stand Top=верх стойки для брони
|
||||
Armor Stand=стойка для брони
|
||||
Locked Armor Stand=стойка для брони с замком
|
||||
Armor Stand (owned by @1)=стойка для бони (владелец @1)
|
||||
|
@ -1,5 +0,0 @@
|
||||
# textdomain: 3d_armor_stand
|
||||
Armor Stand Top=Верх Стійки для Броні
|
||||
Armor Stand=Стійка для Броні
|
||||
Locked Armor Stand=Закрита Стійка для Броні
|
||||
Armor Stand (owned by @1)=Стійка для Броні (власник @1)
|
@ -43,6 +43,9 @@ unified_inventory.register_page("armor", {
|
||||
"image[3.5,"..(fy - 0.25)..";2,4;"..armor.textures[name].preview.."]"..
|
||||
"label[6.0,"..(fy + 0.0)..";"..F(S("Level"))..": "..armor.def[name].level.."]"..
|
||||
"label[6.0,"..(fy + 0.5)..";"..F(S("Heal"))..": "..armor.def[name].heal.."]"..
|
||||
"label[6.0,"..(fy + 2.0)..";"..F(S("Speed"))..": "..armor.def[name].speed.."]"..
|
||||
"label[6.0,"..(fy + 2.5)..";"..F(S("Jump"))..": "..armor.def[name].jump.."]"..
|
||||
"label[6.0,"..(fy + 3.0)..";"..F(S("Gravity"))..": "..armor.def[name].gravity.."]"..
|
||||
"listring[current_player;main]"..
|
||||
"listring[detached:"..name.."_armor;armor]"
|
||||
if armor.config.fire_protect then
|
||||
@ -56,3 +59,5 @@ unified_inventory.register_page("armor", {
|
||||
return {formspec=formspec}
|
||||
end,
|
||||
})
|
||||
|
||||
minetest.log("action", "[3d_armor_ui] loaded.")
|
||||
|
@ -1,8 +0,0 @@
|
||||
# textdomain: 3d_armor_ui
|
||||
3D Armor=3D Броня
|
||||
Armor not initialized!=Броня не инициализирована!
|
||||
Armor=Броня
|
||||
Level=Уровень
|
||||
Heal=Исцеление
|
||||
Fire=Пламя
|
||||
Radiation=Излучение
|
@ -1,8 +0,0 @@
|
||||
# textdomain: 3d_armor_ui
|
||||
3D Armor=3D Броня
|
||||
Armor not initialized!=Броня не ініціалізована!
|
||||
Armor=Броня
|
||||
Level=Рівень
|
||||
Heal=Зцілення
|
||||
Fire=Вогонь
|
||||
Radiation=Радіація
|
@ -1,5 +1,5 @@
|
||||
# textdomain: armor_admin
|
||||
Admin Helmet=Шлем Админа
|
||||
Admin Chestplate=Нагрудник Админа
|
||||
Admin Leggings=Поножи Админа
|
||||
Admin Boots=Ботинки Админа
|
||||
Admin Helmet=шлем админа
|
||||
Admin Chestplate=нагрудник админа
|
||||
Admin Leggings=штаны админа
|
||||
Admin Boots=ботинки админа
|
||||
|
@ -1,5 +0,0 @@
|
||||
# textdomain: armor_admin
|
||||
Admin Helmet=Шолом адміна
|
||||
Admin Chestplate=Броня адміна
|
||||
Admin Leggings=Штани адміна
|
||||
Admin Boots=Взуття адміна
|
Before Width: | Height: | Size: 258 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 261 B After Width: | Height: | Size: 548 B |
Before Width: | Height: | Size: 409 B After Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 285 B After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 348 B After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 261 B After Width: | Height: | Size: 869 B |
Before Width: | Height: | Size: 216 B After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 256 B After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 188 B After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 214 B After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 288 B After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 298 B After Width: | Height: | Size: 1.3 KiB |
@ -1,5 +1,5 @@
|
||||
# textdomain: armor_bronze
|
||||
Bronze Helmet=Бронзовый Шлем
|
||||
Bronze Chestplate=Бронзовый Нагрудник
|
||||
Bronze Leggings=Бронзовые Поножи
|
||||
Bronze Boots=Бронзовые Ботинки
|
||||
Bronze Helmet=бронзовый шлем
|
||||
Bronze Chestplate=бронзовый нагрудник
|
||||
Bronze Leggings=бронзовые штаны
|
||||
Bronze Boots=бронзовые ботинки
|
||||
|
@ -1,5 +0,0 @@
|
||||
# textdomain: armor_bronze
|
||||
Bronze Helmet=Бронзовий шолом
|
||||
Bronze Chestplate=Бронзова броня
|
||||
Bronze Leggings=Бронзові штани
|
||||
Bronze Boots=Бронзове взуття
|
Before Width: | Height: | Size: 253 B After Width: | Height: | Size: 937 B |
Before Width: | Height: | Size: 241 B After Width: | Height: | Size: 602 B |
Before Width: | Height: | Size: 396 B After Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 282 B After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 337 B After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 271 B After Width: | Height: | Size: 796 B |
Before Width: | Height: | Size: 207 B After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 261 B After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 245 B After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 278 B After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 273 B After Width: | Height: | Size: 1.4 KiB |
@ -1,5 +1,5 @@
|
||||
# textdomain: armor_cactus
|
||||
Cactus Helmet=Кактусовый Шлем
|
||||
Cactus Chestplate=Кактусовый Нагрудник
|
||||
Cactus Leggings=Кактусовые Поножи
|
||||
Cactus Boots=Кактусовые Ботинки
|
||||
Cactus Helmet=кактусовый шлем
|
||||
Cactus Chestplate=кактусовый нагрудник
|
||||
Cactus Leggings=кактусовые штаны
|
||||
Cactus Boots=кактусовые ботинки
|
||||
|
@ -1,5 +0,0 @@
|
||||
# textdomain: armor_cactus
|
||||
Cactus Helmet=Кактусовий шолом
|
||||
Cactus Chestplate=Кактусова броня
|
||||
Cactus Leggings=Кактусові штани
|
||||
Cactus Boots=Кактусове взуття
|
Before Width: | Height: | Size: 252 B After Width: | Height: | Size: 903 B |
Before Width: | Height: | Size: 239 B After Width: | Height: | Size: 821 B |
Before Width: | Height: | Size: 393 B After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 286 B After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 325 B After Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 203 B After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 194 B After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 246 B After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 183 B After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 217 B After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 251 B After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 261 B After Width: | Height: | Size: 1.4 KiB |
@ -1,5 +1,5 @@
|
||||
# textdomain: armor_crystal
|
||||
Crystal Helmet=Кристальный Шлем
|
||||
Crystal Chestplate=Кристальный Нагрудник
|
||||
Crystal Leggings=Кристальные Поножи
|
||||
Crystal Boots=Кристальные Ботинки
|
||||
Crystal Helmet=кристалловый шлем
|
||||
Crystal Chestplate=кристалловый нагрудник
|
||||
Crystal Leggings=кристалловые штаны
|
||||
Crystal Boots=кристалловые ботинки
|
||||
|
@ -1,5 +0,0 @@
|
||||
# textdomain: armor_crystal
|
||||
Crystal Helmet=Кришталевий шолом
|
||||
Crystal Chestplate=Кришталева броня
|
||||
Crystal Leggings=Кришталеві штани
|
||||
Crystal Boots=Кришталеве взуття
|
Before Width: | Height: | Size: 261 B After Width: | Height: | Size: 236 B |
Before Width: | Height: | Size: 258 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 404 B After Width: | Height: | Size: 613 B |
Before Width: | Height: | Size: 289 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 350 B After Width: | Height: | Size: 494 B |
Before Width: | Height: | Size: 257 B After Width: | Height: | Size: 834 B |
Before Width: | Height: | Size: 217 B After Width: | Height: | Size: 129 B |
Before Width: | Height: | Size: 258 B After Width: | Height: | Size: 142 B |
Before Width: | Height: | Size: 186 B After Width: | Height: | Size: 138 B |
Before Width: | Height: | Size: 212 B After Width: | Height: | Size: 154 B |
Before Width: | Height: | Size: 290 B After Width: | Height: | Size: 351 B |
Before Width: | Height: | Size: 268 B After Width: | Height: | Size: 1.2 KiB |
@ -1,5 +1,5 @@
|
||||
# textdomain: armor_diamond
|
||||
Diamond Helmet=Алмазный Шлем
|
||||
Diamond Chestplate=Алмазный Нагрудник
|
||||
Diamond Leggings=Алмазные Поножи
|
||||
Diamond Boots=Алмазные Ботинки
|
||||
Diamond Helmet=алмазный шлем
|
||||
Diamond Chestplate=алмазный нагрудник
|
||||
Diamond Leggings=алмазные штаны
|
||||
Diamond Boots=алмазные ботинки
|
||||
|
@ -1,5 +0,0 @@
|
||||
# textdomain: armor_diamond
|
||||
Diamond Helmet=Діамантовий шолом
|
||||
Diamond Chestplate=Діамантова броня
|
||||
Diamond Leggings=Діамантові штани
|
||||
Diamond Boots=Діамантове взуття
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 270 B After Width: | Height: | Size: 872 B |
Before Width: | Height: | Size: 429 B After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 290 B After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 353 B After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 269 B After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 220 B After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 189 B After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 213 B After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 294 B After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 308 B After Width: | Height: | Size: 1.3 KiB |
@ -1,5 +1,5 @@
|
||||
# textdomain: armor_gold
|
||||
Gold Helmet=Золотой Шлем
|
||||
Gold Chestplate=Золотой Нагрудник
|
||||
Gold Leggings=Золотые Поножи
|
||||
Gold Boots=Золотые Ботинки
|
||||
Gold Helmet=золотой шлем
|
||||
Gold Chestplate=золотой нагрудник
|
||||
Gold Leggings=золотые штаны
|
||||
Gold Boots=золотые ботинки
|
||||
|
@ -1,5 +0,0 @@
|
||||
# textdomain: armor_gold
|
||||
Gold Helmet=Золотий шолом
|
||||
Gold Chestplate=Золота броня
|
||||
Gold Leggings=Золоті штани
|
||||
Gold Boots=Золоте взуття
|
Before Width: | Height: | Size: 245 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 226 B After Width: | Height: | Size: 779 B |
Before Width: | Height: | Size: 402 B After Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 281 B After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 353 B After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 251 B After Width: | Height: | Size: 586 B |
Before Width: | Height: | Size: 202 B After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 256 B After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 178 B After Width: | Height: | Size: 1.8 KiB |