Difference between revisions of "Bonus Format"

From VCMI Project Wiki
Jump to: navigation, search
m
(Replaced content with "{{Template:MovedToWebpage|https://vcmi.eu/modders/Bonus_Format/}}")
 
(32 intermediate revisions by 6 users not shown)
Line 1: Line 1:
Enumerative parameters are described in HeroBonus.h file.
+
{{Template:MovedToWebpage|https://vcmi.eu/modders/Bonus_Format/}}
===Short format===
 
<syntaxhighlight lang="javascript">
 
{
 
["BONUS_TYPE", val, subtype, additionalInfo]
 
}
 
</syntaxhighlight>
 
===Full format===
 
All parameters but type are optional.
 
<syntaxhighlight lang="javascript">
 
{
 
"type": "BONUS_TYPE",
 
"subtype": 0,
 
"val" : 0,
 
"valueType", "VALUE_TYPE",
 
"addInfo" : 0,
 
 
 
"duration" : "BONUS_DURATION",
 
"turns" : 0,
 
 
 
"sourceType" : "SOURCE_TYPE",
 
"sourceID" : 0,
 
"effectRange" : "EFFECT_RANGE",
 
"limiter" : ["LIMITER_TYPE", optional_parameters (...)]
 
"propagator" : ["PROPAGATOR_TYPE", optional_parameters (...)]
 
"description" : ""
 
}
 
</syntaxhighlight>
 
 
 
[[Bonus system]]
 

Latest revision as of 16:18, 16 July 2024

Logo256.png    Page moved to VCMI-Homepage