User:Teamtoto: Difference between revisions

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


==TODO:==
==TODO:==
* ID to Name issue with natural weapons: plainName will only return bite, but bite has way too many types to correctly choose it. Use favilink id instead?
 
===Effects===
===Effects===
Finish filling it out
Finish filling it out
Line 34: Line 34:
*Delete [[List of Cybernetics]] when done
*Delete [[List of Cybernetics]] when done


===character template===
===Extra Info===
* add rows for things like hidden (y/n)? include difficulty?
* add rows for things like hidden (y/n)? include difficulty?
* so many traits that are unique to themselves:
* so many traits that are unique to themselves:
Line 41: Line 41:
* hero bonuses?????? > relegated to their own page and table, [[Legendary creatures]]
* hero bonuses?????? > relegated to their own page and table, [[Legendary creatures]]


* creature mutations should allow a max/min and output a range
===Liquids===
 
* [[acid]]
===items===
* [[asphalt]]
* Discharge on hit
* [[lava]]
** Add new Guaranteed Mods section, and link to the related mods
* [[molten wax]]
**drunkonhit
* [[primordial soup]]
**thirstonhit
* [[salt]]
**temperatureonhit
* [[sap]]
**stickonhit
**quenchonhit
**quzdumelee
**vomitonhit
**poisononhit
**diseaseonhit
**boomonhit (neutron flux)


==Faction template==
==Faction template==

Revision as of 22:07, 27 October 2019

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

Maintenence shortcuts

Special:WantedPages Special:WantedCategories

TODO:

Effects

Finish filling it out

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

Liquids

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

Notes

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.