···11# condition_overload
2233+Wiki search for [Condition Overload (Mechanic)](https://wiki.warframe.com/w/Condition_Overload_(Mechanic))
44+55+Made for use in twitch bots. Using [MixItUp](https://mixitupapp.com)'s [external program action](https://wiki.mixitupapp.com/en/actions/external-program-action).
66+77+### Example:
88+99+`!gunCO braton`
1010+in chat, runs:
1111+`[path-to]/condition_overload braton`
1212+which prints:
1313+`The 'Braton Vandal / Braton Prime / MK1-Braton / Braton' 'Incarnon Form Radial Attack AoE' has a poor interaction with GunCO.`
1414+into standard out, to be sent as a response.
1515+1616+317## Development
418519```sh
+2
src/condition_overload.gleam
···1515 argv.load().arguments
1616 |> list.reduce(fn(acc, x) { acc <> " " <> x })
1717 |> result.map(string.lowercase)
1818+1819 case search {
1920 Error(_) -> io.println("Please provide a search term")
2121+2022 Ok(search) -> {
2123 do_search(search)
2224 }