<configs>
<config name="quests">
<!-- Updates the second action, that has tutorialTipQuest02 as a value, and changes that value to tutorialTipQuest03 -->
<!-- Read it like: Under Quests, in a quest that has an ID of 'quest_BasicSurvival1', under the action that has the value -->
<!-- attribute of 'tutorialTipQuest02', change that value to 'tutorialTipQuest03' -->
<set xpath="/quests/quest[@id='quest_BasicSurvival1']/action[@value='tutorialTipQuest02']/@value">tutorialTipQuest03</set>
<!-- Updates the number of cookies -->
<set xpath="/quests/quest[@id='quest_BasicSurvival1']/reward[@id='Cookies']/@value">5</set>
<!-- Inserts a new rewrd item called CandyCanes, after the reward item that matches the snowshovel -->
<insertAfter xpath="/quests/quest[@id='quest_BasicSurvival1']/reward[@value='snowShovel']" >
<reward type="Item" id="candyCanes" value="100" />
</insertAfter>
</config>
</configs>