Skip to content

Commit

Permalink
yet again fix nuclear bomb
Browse files Browse the repository at this point in the history
  • Loading branch information
malytomas committed Oct 13, 2023
1 parent 3115640 commit b723e5f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sources/generateMonsters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1491,7 +1491,8 @@ Monster monsterNuclearBomb(uint32 level)
Skill sk(generate);
sk.name = "Fallout";
sk.radius[AttributeEnum::Constant] = 100;
sk.damageAmount[AttributeEnum::Constant] = generate.level + 10;
sk.duration[AttributeEnum::Constant] = 1000000;
sk.damageAmount[AttributeEnum::Constant] = generate.level / 5 + 5;
sk.damageType = DamageTypeEnum::Poison;
sk.target.flags.groundEffect = true;
mr.onDeath.push_back(std::move(sk));
Expand Down

0 comments on commit b723e5f

Please sign in to comment.