1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-28 06:51:54 +08:00
Files
Dog-Lynx-And-HCN/scripts/Contents/Weapons/RedCrystal.gd
T
fallingshrimp fdedca95b4 feat(武器): 增强红水晶武器爆炸效果
修改红水晶武器爆炸时生成的水晶碎片数量逻辑,从固定数量改为1~N随机数量
更新相关描述文本以反映新的随机数量机制
2025-12-17 22:23:37 +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.001 * to * soulLevel
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