forked from plus-22/rangedweapons_expanded
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython.lua
More file actions
52 lines (45 loc) · 1.52 KB
/
python.lua
File metadata and controls
52 lines (45 loc) · 1.52 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
minetest.register_tool("rangedweapons:python_rld", {
stack_max= 1,
range = 0,
wield_scale = {x=1.25,y=1.25,z=1.1},
description = "",
loaded_gun = "rangedweapons:python",
groups = {not_in_creative_inventory = 1},
inventory_image = "rangedweapons_python_rld.png",
})
minetest.register_tool("rangedweapons:python", {
description = "" ..core.colorize("#35cdff","Colt python\n") ..core.colorize("#FFFFFF", "DMG: 8 | Capacity: 6 rounds\n")..core.colorize("#FFFFFF", "Ammo: .357 magnum | Type: Revolver"),
range = 0,
wield_scale = {x=1.25,y=1.25,z=1.1},
inventory_image = "rangedweapons_python.png",
RW_gun_capabilities = {
gun_damage = {fleshy=8,knockback=0},
gun_recoil = 1.8,
gun_crit = 19,
gun_critEffc = 2.2,
suitable_ammo = {{"rangedweapons:357",6}},
gun_skill = {"revolver_skill",40},
gun_icon = "rangedweapons_python_icon.png",
gun_unloaded = "rangedweapons:python_rld",
gun_cooling = "rangedweapons:python",
gun_velocity = 55,
gun_accuracy = 95,
gun_cooldown = 0.2,
gun_reload = 0.4,
gun_projectiles = 1,
gun_durability = 1000,
gun_smokeSize = 7,
gun_mob_penetration = 15,
gun_node_penetration = 5,
gun_unload_sound = "rangedweapons_shell_insert",
gun_sound = "rangedweapons_deagle",
},
on_use = function(itemstack, user, pointed_thing)
rangedweapons_shoot_gun(itemstack, user)
return itemstack
end,
on_secondary_use = function(itemstack, user, pointed_thing)
rangedweapons_single_load_gun(itemstack, user)
return itemstack
end,
})