Remove snipers (#683)

* Initial Commit

* Fix crash and improve(?) wording

* Fix crafting of snipers
This commit is contained in:
LoneWolfHT 2020-10-12 08:01:23 -07:00 committed by GitHub
parent 4d59d763ab
commit 2e8de0a6cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 6 deletions

View file

@ -23,11 +23,12 @@ ctf_classes.register("knight", {
ctf_classes.register("shooter", { ctf_classes.register("shooter", {
description = "Sharp Shooter", description = "Sharp Shooter",
pros = { "+50% range", "+20% faster shooting" }, pros = { "Skilled with ranged weapons", "Can craft/use sniper rifles"},
cons = {}, cons = {"-25% health points"},
color = "#c60", color = "#c60",
properties = { properties = {
allow_grapples = true, allow_grapples = true,
max_hp = 15,
initial_stuff = { initial_stuff = {
"shooter_guns:rifle_loaded", "shooter_guns:rifle_loaded",
@ -38,6 +39,10 @@ ctf_classes.register("shooter", {
"shooter_hook:grapple_gun", "shooter_hook:grapple_gun",
"shooter_hook:grapple_hook", "shooter_hook:grapple_hook",
"shooter_guns:rifle", "shooter_guns:rifle",
"sniper_rifles:rifle_762",
"sniper_rifles:rifle_762_loaded",
"sniper_rifles:rifle_magnum",
"sniper_rifles:rifle_magnum_loaded",
}, },
allowed_guns = { allowed_guns = {
@ -45,6 +50,13 @@ ctf_classes.register("shooter", {
"shooter_guns:rifle", "shooter_guns:rifle",
"shooter_guns:machine_gun", "shooter_guns:machine_gun",
"shooter_guns:shotgun", "shooter_guns:shotgun",
"sniper_rifles:rifle_762",
"sniper_rifles:rifle_magnum"
},
crafting = {
"sniper_rifles:rifle_762",
"sniper_rifles:rifle_magnum"
}, },
shooter_multipliers = { shooter_multipliers = {
@ -77,6 +89,7 @@ ctf_classes.register("medic", {
}, },
}) })
--[[
ctf_classes.register("sniper", { ctf_classes.register("sniper", {
description = "Sniper", description = "Sniper",
pros = { "+25% range", "+25% faster shooting" }, pros = { "+25% range", "+25% faster shooting" },
@ -112,8 +125,8 @@ ctf_classes.register("sniper", {
}, },
crafting = { crafting = {
"sniper_rifle:rifle_762", "sniper_rifles:rifle_762",
"sniper_rifle:rifle_magnum" "sniper_rifles:rifle_magnum"
}, },
shooter_multipliers = { shooter_multipliers = {
@ -124,6 +137,7 @@ ctf_classes.register("sniper", {
}, },
} }
}) })
]]--
--[[ctf_classes.register("rocketeer", { --[[ctf_classes.register("rocketeer", {
description = "Rocketeer", description = "Rocketeer",

View file

@ -173,7 +173,7 @@ crafting.register_recipe({
type = "inv", type = "inv",
output = "sniper_rifles:rifle_762", output = "sniper_rifles:rifle_762",
items = { "default:steelblock", "default:bronze_ingot 5", "default:mese_crystal", "default:wood" }, items = { "default:steelblock", "default:bronze_ingot 5", "default:mese_crystal", "default:wood" },
always_known = true, always_known = false,
level = 1 level = 1
}) })
@ -182,7 +182,7 @@ crafting.register_recipe({
type = "inv", type = "inv",
output = "sniper_rifles:rifle_magnum", output = "sniper_rifles:rifle_magnum",
items = { "default:steelblock", "default:bronzeblock", "default:diamond", "default:wood" }, items = { "default:steelblock", "default:bronzeblock", "default:diamond", "default:wood" },
always_known = true, always_known = false,
level = 1, level = 1,
}) })