1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-28 23:11:54 +08:00
Files
fallingshrimp 92cedf08b6 refactor(武器系统): 调整红水晶武器参数和世界边界碰撞
修改红水晶武器的攻击力和数量参数,优化游戏平衡性
将圆形碰撞形状替换为世界边界碰撞形状,改进地图边界检测
移除调试标记并更新武器描述模板
2025-12-22 13:16:27 +08:00

20 lines
722 B
GDScript

@tool
extends Weapon
class_name RedCrystalWeapon
func update(to: int, origin: Dictionary, _entity: EntityBase):
origin["atk"] += 5 * to * soulLevel
origin["radius"] += 1 * to * soulLevel
origin["count"] = 1 + 1 * soulLevel
origin["percent"] += 0.25 * (soulLevel - 1)
return origin
func attack(entity: EntityBase):
var weaponPos = entity.findWeaponAnchor("normal")
for bullet in BulletBase.generate(ComponentManager.getBullet("RedCrystal"), entity, weaponPos, (get_global_mouse_position() - weaponPos).angle()):
if bullet is RedCrystalBullet:
bullet.baseDamage = readStore("atk")
bullet.radius = readStore("radius")
bullet.percent = readStore("percent")
bullet.count = readStore("count")
return true