Template:Condition

From Baldur's Gate 3 Wiki
Revision as of 23:56, 15 November 2023 by HiddenDragon (talk | contribs)
Jump to navigation Jump to search
Template documentation

Use this to display a condition. Examples follow.

This template just runs the Cargo query. For the formatting, see: Template:Condition/Format

Base usage

Usage:

{{Condition | Bleeding }}

Result:


Error 1054: Unknown column 'Page' in 'where clause'

Function: CargoSQLQuery::run Query: SELECT `cargo__conditions`.`_pageID` AS `cargo_backlink_page_id_conditions`,`_pageName` AS `Page`,`name` AS `name`,`icon` AS `icon`,`effects` AS `effects`,`types__full` AS `types`,CONCAT() AS `save`,CONCAT() AS `duration`,CONCAT() AS `inline`,CONCAT() AS `altname`,CONCAT() AS `dc` FROM `cargo__conditions` WHERE Page = "Bleeding" ORDER BY `_ID` LIMIT 100


With duration

Usage:

{{Condition | Bleeding | duration = 2 }}

Result:


Error 1054: Unknown column 'Page' in 'where clause'

Function: CargoSQLQuery::run Query: SELECT `cargo__conditions`.`_pageID` AS `cargo_backlink_page_id_conditions`,`_pageName` AS `Page`,`name` AS `name`,`icon` AS `icon`,`effects` AS `effects`,`types__full` AS `types`,CONCAT() AS `save`,CONCAT('2') AS `duration`,CONCAT() AS `inline`,CONCAT() AS `altname`,CONCAT() AS `dc` FROM `cargo__conditions` WHERE Page = "Bleeding" ORDER BY `_ID` LIMIT 100


With saving throw

Usage:

{{Condition | Bleeding | save = CON }}

Result:


Error 1054: Unknown column 'Page' in 'where clause'

Function: CargoSQLQuery::run Query: SELECT `cargo__conditions`.`_pageID` AS `cargo_backlink_page_id_conditions`,`_pageName` AS `Page`,`name` AS `name`,`icon` AS `icon`,`effects` AS `effects`,`types__full` AS `types`,CONCAT('CON') AS `save`,CONCAT() AS `duration`,CONCAT() AS `inline`,CONCAT() AS `altname`,CONCAT() AS `dc` FROM `cargo__conditions` WHERE Page = "Bleeding" ORDER BY `_ID` LIMIT 100


With duration and saving throw

Usage:

{{Condition | Bleeding | save = CON | duration = 2 | dc = 15 }}

Result:


Error 1054: Unknown column 'Page' in 'where clause'

Function: CargoSQLQuery::run Query: SELECT `cargo__conditions`.`_pageID` AS `cargo_backlink_page_id_conditions`,`_pageName` AS `Page`,`name` AS `name`,`icon` AS `icon`,`effects` AS `effects`,`types__full` AS `types`,CONCAT('CON') AS `save`,CONCAT('2') AS `duration`,CONCAT() AS `inline`,CONCAT() AS `altname`,CONCAT('15') AS `dc` FROM `cargo__conditions` WHERE Page = "Bleeding" ORDER BY `_ID` LIMIT 100


With a border

Use border = 1 to add a border.

{{Condition | Bleeding | save = CON | duration = 2 | border = 1}}

Result:


Error 1054: Unknown column 'Page' in 'where clause'

Function: CargoSQLQuery::run Query: SELECT `cargo__conditions`.`_pageID` AS `cargo_backlink_page_id_conditions`,`_pageName` AS `Page`,`name` AS `name`,`icon` AS `icon`,`effects` AS `effects`,`types__full` AS `types`,CONCAT('CON') AS `save`,CONCAT('2') AS `duration`,CONCAT() AS `inline`,CONCAT() AS `altname`,CONCAT() AS `dc` FROM `cargo__conditions` WHERE Page = "Bleeding" ORDER BY `_ID` LIMIT 100


Inline-friendly

Usage:

{{Condition | Bleeding | inline = true }}
Result: blabla
Error 1054: Unknown column 'Page' in 'where clause'

Function: CargoSQLQuery::run Query: SELECT `cargo__conditions`.`_pageID` AS `cargo_backlink_page_id_conditions`,`_pageName` AS `Page`,`name` AS `name`,`icon` AS `icon`,`effects` AS `effects`,`types__full` AS `types`,CONCAT() AS `save`,CONCAT() AS `duration`,CONCAT('true') AS `inline`,CONCAT() AS `altname`,CONCAT() AS `dc` FROM `cargo__conditions` WHERE Page = "Bleeding" ORDER BY `_ID` LIMIT 100

blabla

Alternative display name

{{Condition | Bleeding | save = CON | altname=oh no i'm bleeding | duration = 2 }}

Result:

Error 1054: Unknown column 'Page' in 'where clause'

Function: CargoSQLQuery::run Query: SELECT `cargo__conditions`.`_pageID` AS `cargo_backlink_page_id_conditions`,`_pageName` AS `Page`,`name` AS `name`,`icon` AS `icon`,`effects` AS `effects`,`types__full` AS `types`,CONCAT('CON') AS `save`,CONCAT('2') AS `duration`,CONCAT() AS `inline`,CONCAT('oh no i"m bleeding') AS `altname`,CONCAT() AS `dc` FROM `cargo__conditions` WHERE Page = "Bleeding" ORDER BY `_ID` LIMIT 100

Also displays types

Error 1054: Unknown column 'Page' in 'where clause'

Function: CargoSQLQuery::run Query: SELECT `cargo__conditions`.`_pageID` AS `cargo_backlink_page_id_conditions`,`_pageName` AS `Page`,`name` AS `name`,`icon` AS `icon`,`effects` AS `effects`,`types__full` AS `types`,CONCAT() AS `save`,CONCAT() AS `duration`,CONCAT() AS `inline`,CONCAT() AS `altname`,CONCAT() AS `dc` FROM `cargo__conditions` WHERE Page = "Feverish" ORDER BY `_ID` LIMIT 100