1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-27 22:41:56 +08:00
Files
fallingshrimp 1904edd623 refactor(MathTool): 重命名随机数生成方法并优化蘑菇矿挖爪属性
将 randomVector2In 重命名为 sampleInCircle,randomRingPoint 重命名为 sampleInRing,randChoiceWeightsFrom 重命名为 randomChoiceFromWeights,signBeforeStr 重命名为 toSigned
调整蘑菇矿挖爪的攻击力和掉落率,减少基础伤害至0.5,固定掉落率为0.1,优化物品掉落逻辑
2026-01-18 15:31:52 +08:00

22 lines
1.1 KiB
GDScript

class_name PresetEntityAI
static func follow(entity: EntityBase, target: EntityBase, minDistance: float = 100):
var delta = target.position - entity.position
var distanceOffset = abs(delta.length() - minDistance)
if distanceOffset > entity.fields[FieldStore.Entity.MOVEMENT_SPEED] * 10:
if delta.length() < minDistance:
entity.move(-delta)
else:
entity.move(delta)
static func distanceAttack(entity: EntityBase, target: EntityBase, minDistance: float, maxDistance: float, index: int = 0):
var distance = (entity.position - target.position).length()
if minDistance <= distance and distance <= maxDistance:
entity.tryAttack(index)
static func distanceAction(entity: EntityBase, target: EntityBase, minDistance: float, maxDistance: float, action: Callable):
var distance = (entity.position - target.position).length()
if minDistance <= distance and distance <= maxDistance:
action.call()
static func weightAttack(entity: EntityBase, indexes: Array[int], weight: Array[int], chargeUp: Callable):
var method = MathTool.randomChoiceFromWeights(indexes, weight)
entity.tryAttack(method, chargeUp.call(method))