warframe

This is the documentation page for Module:Arcane


Arcane stores data about WARFRAME's Arcane Enhancements.

On this Wiki, Arcane is used in:

Usage

Module

local p = {}
local Arcane = require('Module:Arcane')

local function func(arcaneName, valName)
    return Arcane._getValue(arcaneName, valName)
end

Documentation

Package items

arcane.getValueRaw(frame) (function)
Gets the specified raw value of an arcane as seen in /data.
Parameter: frame (table)
Returns: Raw value of arcane (string, number)
arcane.getValue(frame) (function)
Gets the specified value of an arcane.
Parameter: frame (table)
Returns: Arcane value (string, number)
arcane._getValue(arcaneName, valName) (function)
Gets the specified value of an arcane.
Parameters:
  • arcaneName Name of arcane (string)
  • valName Name of value (string)
Returns: Arcane value (string, number)
arcane.getDissolutionTable(frame) (function)
Returns a wikitable of all Arcane Dissolution values of Arcanes as seen on Vosfor#Acquisition.
Parameter: frame Frame object (table)
Returns: Wikitext of resultant wikitable (string)

Created with Docbunto

See Also


Code