1
0

Improved fishing rewards (#4120)

* Damage fishing rod after use
* Give xp to the player for catching something
* Fixed junk drops
* Implement Luck of the Sea
This commit is contained in:
Bond-009
2018-01-05 15:32:30 +01:00
committed by peterbell10
parent a2de7c2bb1
commit d7de2dccf0
2 changed files with 56 additions and 38 deletions

View File

@@ -55,6 +55,7 @@ short cItem::GetMaxDamage(void) const
case E_ITEM_DIAMOND_SHOVEL: return 1561;
case E_ITEM_DIAMOND_SWORD: return 1561;
case E_ITEM_FLINT_AND_STEEL: return 64;
case E_ITEM_FISHING_ROD: return 65;
case E_ITEM_GOLD_AXE: return 32;
case E_ITEM_GOLD_BOOTS: return 92;
case E_ITEM_GOLD_CHESTPLATE: return 113;
@@ -88,8 +89,9 @@ short cItem::GetMaxDamage(void) const
case E_ITEM_WOODEN_PICKAXE: return 59;
case E_ITEM_WOODEN_SHOVEL: return 59;
case E_ITEM_WOODEN_SWORD: return 59;
default: return 0;
}
return 0;
}