-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtaurus.lua
More file actions
50 lines (45 loc) · 1.52 KB
/
taurus.lua
File metadata and controls
50 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
minetest.register_tool("rangedweapons:taurus_rld", {
stack_max= 1,
range = 0,
wield_scale = {x=1.25,y=1.25,z=1.1},
description = "",
loaded_gun = "rangedweapons:taurus",
groups = {not_in_creative_inventory = 1},
inventory_image = "rangedweapons_taurus_rld.png",
})
minetest.register_tool("rangedweapons:taurus", {
description = "" ..core.colorize("#35cdff","Taurus raging bull\n") ..core.colorize("#FFFFFF", "DMG: 9 | Capacity: 6 rounds\n")..core.colorize("#FFFFFF", "Ammo: .44 magnum | Type: Revolver"),
range = 0,
wield_scale = {x=1.25,y=1.25,z=1.1},
inventory_image = "rangedweapons_taurus.png",
RW_gun_capabilities = {
gun_damage = {fleshy=9,knockback=0},
gun_recoil = 1.9,
gun_crit = 22,
gun_critEffc = 3.1,
suitable_ammo = {{"rangedweapons:44",6}},
gun_skill = {"revolver_skill",40},
gun_icon = "rangedweapons_taurus_icon.png",
gun_unloaded = "rangedweapons:taurus_rld",
gun_cooling = "rangedweapons:taurus",
gun_velocity = 55,
gun_accuracy = 97,
gun_cooldown = 0.2,
gun_reload = 0.4,
gun_projectiles = 1,
gun_durability = 1750,
gun_smokeSize = 7,
gun_mob_penetration = 24,
gun_node_penetration = 8,
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,
})