[DiscordArchive] How would i create a spell whereas the tooltip ...
[DiscordArchive] How would i create a spell whereas the tooltip ...
Archived author: avoel • Posted: 2024-11-28T22:30:43.326000+00:00
Original source
it prints just $ Fire Damage in the tooltip
Archived author: avoel • Posted: 2024-11-28T22:31:03.490000+00:00
Original source
if i do ${m1*$}
Archived author: stoneharry • Posted: 2024-11-28T22:34:00.553000+00:00
Original source
These might be good example spells: `37985, 38309, 49883, 49884, 69670`
Source:
`SPELL_ATTR0_SCALES_WITH_CREATURE_LEVEL = 524,288`
```sql
SELECT * FROM spell WHERE attributes & 524288 != 0 AND SpellDescription0 LIKE '%m1%';
```
Archived author: stoneharry • Posted: 2024-11-28T22:39:52.096000+00:00
Original source
```sql
SELECT id, BaseLevel, SpellLevel, MaximumLevel, (EffectBasePoints1+EffectDieSides1) AS 'BaseDamage', EffectDamageMultiplier1, SpellName0, SpellDescription0, SpellTooltip0
FROM spell
WHERE attributes & 524288 != 0;
```
I don't think Blizzard bothers keeping the tooltip updated properly for creature spells
Archived author: stoneharry • Posted: 2024-11-28T22:40:46.843000+00:00
Original source
That or the flag is only used by creatures where the spell damage should scale with the creature level
Archived author: avoel • Posted: 2024-11-28T22:41:00.265000+00:00
Original source
hm
Archived author: stoneharry • Posted: 2024-11-28T22:41:36.221000+00:00
Original source
```sql
SELECT id, BaseLevel, SpellLevel, MaximumLevel, (EffectBasePoints1+EffectDieSides1) AS 'BaseDamage', EffectDamageMultiplier1, SpellName0, SpellDescription0, SpellTooltip0
FROM spell
WHERE SpellTooltip0 LIKE '%$m1%';
``` is much more interesting
Archived author: stoneharry • Posted: 2024-11-28T22:43:21.504000+00:00
Original source
`20 - Spell damage depends on level of the caster. Source: "For non-player casts, scale impact and power cost with caster's level."` yeah think the flag is only creatures
Archived author: stoneharry • Posted: 2024-11-28T22:51:43.616000+00:00
Original source
no idea it doesn't make sense to me just looking at the data
Archived author: avoel • Posted: 2024-11-28T22:54:14.556000+00:00
Original source
yea i don't get it either