xml書き換え/Alpha17/Lamb Rations(羊肉レーション)の食中毒確率表示

Last-modified: 2019-03-06 (水) 20:59:56
  • Lamb Rationsも他の缶詰同様食中毒(Food Poisoning)になる可能性があるが、xmlの記述ミスで確立表示が0%になっている。

直接書き換える場合

items.xml 7606行目

<item name="foodCanLamb">
	<property name="Extends" value="foodCanBeef"/>

	<effect_group tiered="false">
		<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="$foodAmountAdd" operation="add" value="15"/>
		<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="foodHealthAmount" operation="add" value="7"/>
		<triggered_effect trigger="onSelfPrimaryActionEnd" action="AddBuff" target="self" buff="buffProcessConsumables"/>
		<triggered_effect trigger="onSelfPrimaryActionEnd" action="AddBuff" target="self" buff="buffIllFoodPoisoning0">
			<requirement name="RandomRoll" seed_type="Random" target="self" min_max="0,100" operation="LTE" value="5"/>
-			<display_value name="FoodPoisoningRisk" value=".05" />
		</triggered_effect>
+			<display_value name="FoodPoisoningRisk" value=".05" />
	</effect_group>
</item>

Modletとして追加する場合

Modlet:items.xml

<configs>
<remove xpath="/items/item[@name='foodCanLamb']/effect_group/triggered_effect[4]/display_value"/>

<append xpath="/items/item[@name='foodCanLamb']/effect_group">
<display_value name="FoodPoisoningRisk" value=".05" />
</append>
</configs>