summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemSword.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Items/ItemSword.h')
-rw-r--r--src/Items/ItemSword.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/Items/ItemSword.h b/src/Items/ItemSword.h
index a15a9e3db..26372cc40 100644
--- a/src/Items/ItemSword.h
+++ b/src/Items/ItemSword.h
@@ -56,6 +56,34 @@ public:
return 0;
#endif
}
+
+
+
+ virtual float GetBlockBreakingStrength(BLOCKTYPE a_Block)
+ {
+ if (a_Block == E_BLOCK_COBWEB)
+ {
+ return 15.0f;
+ }
+ else
+ {
+ if (
+ IsBlockMaterialPlants(a_Block) ||
+ IsBlockMaterialVine(a_Block) ||
+ IsBlockMaterialCoral(a_Block) ||
+ IsBlockMaterialLeaves(a_Block) ||
+ IsBlockMaterialGourd(a_Block)
+ )
+ {
+ return 1.5f;
+ }
+ else
+ {
+ return 1.0f;
+ }
+ }
+ }
+
} ;