there is a 7th enchantment in the code, and its string was wrong
This commit is contained in:
@@ -185,6 +185,7 @@ party can buy:</p>
|
||||
<li>4: flaming weapon</li>
|
||||
<li>5: +5</li>
|
||||
<li>6: blessed</li>
|
||||
<li>7: +4</li>
|
||||
</ul>
|
||||
|
||||
<h3 id='nodes-buy'>Buying Talking Nodes</h3>
|
||||
|
@@ -163,6 +163,7 @@ the quest specified as the item level.</dd>
|
||||
<li>4: flaming weapon</li>
|
||||
<li>5: +5</li>
|
||||
<li>6: blessed</li>
|
||||
<li>7: +4</li>
|
||||
</ul>
|
||||
|
||||
<h2>Setting Item Abilities (Advanced)</h2>
|
||||
|
@@ -74,4 +74,4 @@ cEnchant E_SHOOT_FLAME = cEnchant(eEnchant::SHOOT_FLAME, "F").withCost(8).withAb
|
||||
cEnchant E_FLAMING = cEnchant(eEnchant::FLAMING, "F!").withCost(15).withAbility(eItemAbil::DAMAGING_WEAPON, 5, eDamageType::FIRE).finish();
|
||||
cEnchant E_PLUS_FIVE = cEnchant(eEnchant::PLUS_FIVE, "+5").withCost(15).withBonus(5).finish();
|
||||
cEnchant E_BLESSED = cEnchant(eEnchant::BLESSED, "B").withCost(10).withBonus(1).withAbility(eItemAbil::AFFECT_STATUS, 5, eStatus::BLESS_CURSE);
|
||||
cEnchant E_PLUS_FOUR = cEnchant(eEnchant::PLUS_FOUR, "+5").withCost(15).withBonus(4).finish();
|
||||
cEnchant E_PLUS_FOUR = cEnchant(eEnchant::PLUS_FOUR, "+4").withCost(15).withBonus(4).finish();
|
||||
|
Reference in New Issue
Block a user