mirror of
https://github.com/Rundll86/Dog-Lynx-And-HCN.git
synced 2026-05-29 07:21:54 +08:00
1904edd623
将 randomVector2In 重命名为 sampleInCircle,randomRingPoint 重命名为 sampleInRing,randChoiceWeightsFrom 重命名为 randomChoiceFromWeights,signBeforeStr 重命名为 toSigned 调整蘑菇矿挖爪的攻击力和掉落率,减少基础伤害至0.5,固定掉落率为0.1,优化物品掉落逻辑
14 lines
401 B
GDScript
14 lines
401 B
GDScript
extends BulletBase
|
|
class_name MushroomPickaxe
|
|
|
|
var count: int = 2
|
|
var rate: float = 0.1
|
|
|
|
func succeedToHit(_dmg, entity):
|
|
if MathTool.rate(rate):
|
|
ItemDropped.generate(
|
|
MathTool.randomChoiceFrom([ItemStore.ItemType.BASEBALL, ItemStore.ItemType.BASKETBALL, ItemStore.ItemType.BEACHBALL]),
|
|
randi_range(1, count),
|
|
entity.position + MathTool.sampleInCircle(GameRule.itemDroppedSpawnOffset)
|
|
)
|