getTerrainModifier: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 4: Line 4:
|version=1.5.2
|version=1.5.2
|description=
|description=
Gets the Terrain Modifier for the named Token or for the Current Token if no name is given.
Gets the Terrain Modifier for the named Token or for the Current Token if no name is given. If the first parameter is {{code|"JSON"}} then a JSON Object is returned with the Terrain Modifier, Terrain Modifier Type and an array of Ignored Terrain Modifier Types.


|usage=
|usage=
Line 10: Line 10:
getTerrainModifier()
getTerrainModifier()
getTerrainModifier(token)
getTerrainModifier(token)
getTerrainModifier(token, map)
getTerrainModifier(type)
getTerrainModifier(type, token)
getTerrainModifier(type, token, map)
</source>
</source>
'''Parameters'''
'''Parameters'''
{{param|token|Optional token name.}}
{{param|token|Optional token name or return type.}}
{{param|type|First parameter can be the string "JSON" to get a JSON Object back.}}
{{param|map|Optional map name to find the token on.  Current map is used if not supplied.}}


|example=
|example=
Line 22: Line 28:


'''Output:'''
'''Output:'''
<source lang="mtmacro">
2.0
</source>
Get terrain modifiers as a JSON Object on the Wizard's Keep map.
<source lang="mtmacro" line>
[r: tmod = getTerrainModifier("JSON", "Sticky Floor Tile", "Wizard's Keep")]
</source>
'''Output:'''
<source lang="javascript">
{
    "terrainModifier": 2.0,
    "terrainModifierOperation": "ADD",
    "terrainModifiersIgnored": ["NONE"]
}
</source>
Get terrain modifiers for the named token that ignores ADD & MULTIPLY mod types.
<source lang="mtmacro" line>
<source lang="mtmacro" line>
2.0
[r: tmod = getTerrainModifier("Elf with Fancy Feet")]
</source>
 
'''Output:'''
<source lang="javascript">
{
    "terrainModifier": 0.0,
    "terrainModifierOperation": "NONE",
    "terrainModifiersIgnored": ["ADD","MULTIPLY"]
}
</source>
</source>


|also=
|also=
{{func|setTerrainModifier}}
{{func|setTerrainModifier}}


|changes=
* '''1.5.11''' - Added support for new terrain modifier types.
}}
}}
[[Category:Token Function]]
[[Category:Token Function]]

Revision as of 17:32, 17 January 2020

getTerrainModifier() Function

 Note: This function can only be used in a Trusted Macro

Introduced in version 1.5.2
Gets the Terrain Modifier for the named Token or for the Current Token if no name is given. If the first parameter is "JSON" then a JSON Object is returned with the Terrain Modifier, Terrain Modifier Type and an array of Ignored Terrain Modifier Types.

Usage

getTerrainModifier()
getTerrainModifier(token)
getTerrainModifier(token, map)
getTerrainModifier(type)
getTerrainModifier(type, token)
getTerrainModifier(type, token, map)

Parameters

  • token - Optional token name or return type.
  • type - First parameter can be the string "JSON" to get a JSON Object back.
  • map - Optional map name to find the token on. Current map is used if not supplied.

Example

Get the Terrain Modifier for the named token:
[r: tmod = getTerrainModifier("Sticky Floor Tile")]

Output:

2.0

Get terrain modifiers as a JSON Object on the Wizard's Keep map.

[r: tmod = getTerrainModifier("JSON", "Sticky Floor Tile", "Wizard's Keep")]

Output:

{
    "terrainModifier": 2.0,
    "terrainModifierOperation": "ADD",
    "terrainModifiersIgnored": ["NONE"]
}

Get terrain modifiers for the named token that ignores ADD & MULTIPLY mod types.

[r: tmod = getTerrainModifier("Elf with Fancy Feet")]

Output:

{
    "terrainModifier": 0.0,
    "terrainModifierOperation": "NONE",
    "terrainModifiersIgnored": ["ADD","MULTIPLY"]
}

See Also

Version Changes

  • 1.5.11 - Added support for new terrain modifier types.