1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-30 16:01:53 +08:00
Files
Dog-Lynx-And-HCN/scripts/Contents/Weapons/RedCrystal.gd
T
fallingshrimp 20d746683d fix(Weapons/RedCrystal): 调整百分比加成计算方式
将百分比加成从固定增量改为基于灵魂等级的动态计算,以提供更平衡的成长曲线
2025-12-17 22:43:14 +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"] = 2 + 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