User:Teamtoto: Difference between revisions

From Caves of Qud Wiki
Jump to navigation Jump to search
mNo edit summary
Line 27: Line 27:


==TODO:==
==TODO:==
 
* optimize all queries that use favilink
*Cargo store encounter table in module instead so total weight is also included in cargo
* decrease query count by removing ID to name / ID to page as much as possible
===Effects===
* clean up kith and kin
Finish filling it out
* qbe grammar stuff
 
===Cybernetics===
*add creation codes
*Move cybernetics storage to their item pages
*Delete [[List of Cybernetics]] when done
 
===Extra Info===
* add rows for things like hidden (y/n)? include difficulty?
* so many traits that are unique to themselves:
**explode into goop on death (and what kind)
**blinkondamage
* hero bonuses?????? > relegated to their own page and table, [[Legendary creatures]]


==The Next Big Article==
==The Next Big Article==

Revision as of 17:43, 11 February 2021

Good morning! It is a lovely Hindsun on the 4th of Ubu Ut (May 3, 16:13:57 pm UTC).

Code Name Hex
r dark red / crimson #a64a2e
R red / scarlet #d74200
o dark orange #f15f22
O orange #e99f10
w brown #98875f
W gold / yellow #cfc041
g dark green #009403
G green #00c420
b dark blue #0048bd
B blue / azure #0096ff
c dark cyan / teal #40a4b9
C cyan #77bfcf
m dark magenta / purple #b154cf
M magenta #da5bd6
k #0f3b3a
K dark grey / black #155352
y grey #b1c9c3
Y white #ffffff
/Sandbox /Sandbox2
Template:Sandbox/User:Teamtoto/newitem2 Module:Sandbox/User:Teamtoto/LuaModule
Module:GetCreatureStats Form:Simulator_Sandbox
Template:VSSim Template:CharaSim
Template:Simulator Sandbox /Sandbox3

Maintenence shortcuts

Special:WantedPages Special:WantedCategories

TODO:

  • optimize all queries that use favilink
  • decrease query count by removing ID to name / ID to page as much as possible
  • clean up kith and kin
  • qbe grammar stuff

The Next Big Article

Faction template

  • add attribute for holy place?
  • fix parent faction so if a faction reputation for it already exists, toss it

QBE TODO

  • what does DynamicObjectsTable:Saltdunes_Creatures:Weight Value=3 do?
  • also DynamicObjectsTable:Snapjaws:Builder


[ Teamtoto ]

*Out of an oculus pours a scanning cone of mosaic light. It's unclear if they regard you as an interloper, but they take no aggressive action.*


List of Static Water Ritualable Characters

0lam, Agate Severance Star, Agyra, Aoyg-No-Longer, servant of Ptoh in the Cosmic Wood, Asphodel, Earl of Omonporch, Barathrum the Old, Dreamer, Dyvvrach, Elder Irudad, Eschelstadt II, High Priest of the Stilt, Eskhind, Fjorn-Kosef, Who Knits The Icy Lattice, Girsh Agolgot, Girsh Bethsaida, Girsh Qas, Girsh Qon, Girsh Rermadon, Girsh Shug'ruith the Burrower, Goek, Gyre wight of Agolgot, Gyre wight of Bethsaida, Gyre wight of Qas, Gyre wight of Qon, Gyre wight of Rermadon, Gyre wight of Shug'ruith, Haggabah, Who Plies The Umbral Path, Hindriarch Keh, Jotun, Who Parts Limbs, K-Goninon, Lulihart, hindren pariah, Mamon Souldrinker, Mayor Haddas, Mayor Nuntu, Mehmet, Miryam, Oboroqoru, Ape God, Oddly-hued glowpad, Otho, Pax Klanq, Phinae Hoshaiah, High Priest of the Rock, Q Girl, Rainwater Shomer, Slog of the Cloaca, Tammuz, Thicksalt, Tikva, Tszappur, disciple of the Coiled Lamb, Tzedech, User:Firel, Warden 1-FF, reprogrammed conservator, Warden Indrix, Goatfolk Pariah, Warden Ualraig, Warden Une, Wardens Esther, Yla Haj

Notes

custom dataspaces

Modding is 10000 (modding talk is 10001) Data is 10002 (data talk is 10003)

from [1]

HOLDS doesn't work as expected

Cargo bug. Instead of using HOLDS try, *__full instead. The lists then becomes a ordinary string and can be queried as such.

Example:

  • Replace skill_gems.gem_tags HOLDS "Aura" with skill_gems.gem_tags__full LIKE "%Aura%"
  • Use regexp for more advanced queries: events.id__FULL REGEXP "(, |^)SSF Abyss(, |$)".
    • The delimiter in this case is ,
    • Replace | with {{!}} in normal wikitext.

Case sensitivity

Cargo is case insensitive. Use BINARY instead. Read more here.