Skip to content

Commit

Permalink
tweak: morningstar
Browse files Browse the repository at this point in the history
remove fear, add damage, make rarer
  • Loading branch information
kiedtl committed Jun 26, 2024
1 parent e1ddbdb commit c9d79a8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions src/items.zig
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ pub const ITEM_DROPS = [_]ItemTemplate{
.{ .w = 30, .i = .{ .W = &DaggerWeapon } },
.{ .w = 25, .i = .{ .W = &RapierWeapon } },
.{ .w = 25, .i = .{ .W = &GreatMaceWeapon } },
.{ .w = 30, .i = .{ .W = &MorningstarWeapon } },
.{ .w = 25, .i = .{ .W = &MonkSpadeWeapon } },
.{ .w = 10, .i = .{ .W = &WoldoWeapon } },
.{ .w = 10, .i = .{ .W = &GoldDaggerWeapon } },
.{ .w = 10, .i = .{ .W = &MorningstarWeapon } },
// Armor
.{ .w = 20, .i = .{ .A = GambesonArmor } },
.{ .w = 05, .i = .{ .A = SilusGambesonArmor } },
Expand Down Expand Up @@ -2008,11 +2008,13 @@ pub const WoldoWeapon = Weapon{
pub const MorningstarWeapon = Weapon{
.id = "morningstar",
.name = "morningstar",
.damage = 2,
.damage = 3,
.stats = .{ .Melee = 10 },
.effects = &[_]StatusDataInfo{
.{ .status = .Fear, .duration = .{ .Tmp = 1 } },
},
// Fear is just too strong.
//
// .effects = &[_]StatusDataInfo{
// .{ .status = .Fear, .duration = .{ .Tmp = 1 } },
// },
.strs = &CRUSHING_STRS,
};

Expand Down
2 changes: 1 addition & 1 deletion src/mobs.zig
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ pub const PlayerTemplate = MobTemplate{

.stats = .{ .Willpower = 4, .Missile = 60, .Evade = 10, .Vision = PLAYER_VISION, .Potential = 40 },
},
.weapon = &items.MorningstarWeapon,
.weapon = &items.DaggerWeapon,
// .backup_weapon = &items.ShadowMaulWeapon,
// .armor = items.FumingVestArmor,
//.evocables = &[_]Evocable{items.EldritchLanternEvoc},
Expand Down

0 comments on commit c9d79a8

Please sign in to comment.