-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathm60.lua
More file actions
53 lines (46 loc) · 1.5 KB
/
m60.lua
File metadata and controls
53 lines (46 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
minetest.register_tool("rangedweapons:m60_r", {
stack_max= 1,
wield_scale = {x=2.0,y=2.0,z=1.4},
description = "",
rw_next_reload = "rangedweapons:m60",
load_sound = "rangedweapons_rifle_clip_in",
range = 0,
groups = {not_in_creative_inventory = 1},
inventory_image = "rangedweapons_m60_rld.png",
})
minetest.register_tool("rangedweapons:m60", {
stack_max= 1,
wield_scale = {x=2.0,y=2.0,z=1.4},
description = "" ..core.colorize("#35cdff","M60\n") ..core.colorize("#FFFFFF", "DMG: 7 | Capacity: 100 rounds\n")..core.colorize("#FFFFFF", "Ammo: 7.62mm | Type: Machine gun"),
range = 0,
inventory_image = "rangedweapons_m60.png",
RW_gun_capabilities = {
automatic_gun = 1,
gun_damage = {fleshy=7,knockback=0},
gun_recoil = 1.4,
gun_crit = 13,
gun_critEffc = 3.0,
suitable_ammo = {{"rangedweapons:762mm",100}},
gun_skill = {"heavy_skill",60},
gun_icon = "rangedweapons_m60_icon.png",
gun_unloaded = "rangedweapons:m60_r",
gun_velocity = 44,
gun_accuracy = 65,
gun_cooldown = 0.09,
gun_reload = 1.0,
gun_projectiles = 1,
has_shell = 1,
gun_gravity = 0,
gun_durability = 2750,
gun_smokeSize = 5,
gun_mob_penetration = 27,
gun_node_penetration = 12,
gun_unload_sound = "rangedweapons_rifle_clip_out",
gun_sound = "rangedweapons_machinegun",
},
on_secondary_use = function(itemstack, user, pointed_thing)
rangedweapons_reload_gun(itemstack, user)
return itemstack
end,
inventory_image = "rangedweapons_m60.png",
})