Skip to main content

User login

What is OpenID?
  • Log in using OpenID
  • Cancel OpenID login
  • Create new account
  • Request new password
Register
  • Home
  • Browse
    • 2D Art
    • 3D Art
    • Concept Art
    • Textures
    • Music
    • Sound Effects
    • Documents
    • Featured Tutorials
  • Submit Art
  • Collect
    • My Collections
    • Art Collections
  • Forums
  • FAQ
  • Leaderboards
    • All Time
      • Total Points
      • Comments
      • Favorites (All)
      • Favorites (2D)
      • Favorites (3D)
      • Favorites (Concept Art)
      • Favorites (Music)
      • Favorites (Sound)
      • Favorites (Textures)
    • Weekly
      • Total Points
      • Comments
      • Favorites (All)
      • Favorites (2D)
      • Favorites (3D)
      • Favorites (Concept Art)
      • Favorites (Music)
      • Favorites (Sound)
      • Favorites (Textures)
  • ❤ Donate
FLARE [ARCHIVED]

Creating new powers

necron099
Monday, August 14, 2017 - 17:36

Hi,

 

I'm trying to create new powers, and want to create one that doesn't do damage (like a slow or stun only) is it possible to do this? I copied the shock spell, made a new id, and commented out some lines. The spell fires, but doesn't slow the enemies. Any help would be appreciated.

 

Thanks

  • Log in or register to post comments
dorkster
joined 13 years 4 months ago
Wednesday, August 16, 2017 - 13:45
dorkster's picture

You can use:

modifier_damage=absolute,0,0

ignore_zero_damage=true

This will set the power damage to zero, but still allow the hazard to hit an enemy. We use this for the fire/ice weakness spells in empyrean_campaign (ids 203/204 in powers/categories/enemy.txt).  To slow enemies, you'll need to add a post_effect like this:

post_effect=slow,50,2s

 

  • Log in or register to post comments
necron099
joined 8 years 3 months ago
Thursday, August 17, 2017 - 07:15

Thanks dorkster, works like a charm.

 

Does it matter if I comment out trait_elemental, or leave it as (air, earth, ice, etc) ? I guess what I'm trying to say is trait_elemental required?

  • Log in or register to post comments
dorkster
joined 13 years 4 months ago
Thursday, August 17, 2017 - 07:56
dorkster's picture

You can safely leave trait_elemental out, as it only affects powers that do damage.

  • Log in or register to post comments
necron099
joined 8 years 3 months ago
Thursday, August 17, 2017 - 13:05

ok, thanks dorkster

  • Log in or register to post comments