Skip to content

Commit

Permalink
fixed crab levels and loot
Browse files Browse the repository at this point in the history
  • Loading branch information
msx80 committed Jul 6, 2024
1 parent b13ebdd commit f151d3f
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ public enum MonsterDef {
Loot.of(3, Item.Bone, Range.of(1,1)),
Loot.of(3, Item.Shirt, Range.of(1, 1))
),

CRAB("CRAB",-27,range(10, 18),range(4, 6),
range(7,32), range(3,4),
Loot.of(3, Item.Blood, Range.of(2,3)),
Loot.of(3, Item.CrabShell, Range.of(1,1)),
Loot.of(4, Item.Claw, Range.of(2,2))),

GOBLIN("GOBLIN",-11,range(6,14),range(4,5),
range(8,30), range(3,6),
Expand All @@ -45,10 +51,6 @@ public enum MonsterDef {
Loot.of(3, Item.Clover, Range.of(1,2)),
Loot.of(1, Item.Spinach, Range.of(1,1))),

CRAB("CRAB",-27,range(10, 18),range(4, 6),
range(5,32), range(3,4),
Loot.of(3, Item.Blood, Range.of(2,3)),
Loot.of(4, Item.Claw, Range.of(2,2))),


SKULL("SKULL",-12,range(25,30),range(1,10),
Expand Down

0 comments on commit f151d3f

Please sign in to comment.