Sorry if it's the wrong category, I thought it would be fitting ^^
Recently I have been having issues remembering and checking all usual tags I use while uploading, I made a text tag checklist but going through that after a few uploads become a tad tiresome.. And then I remembered re621 has the feature of creating your own custom suggestions when you apply X tag, so I'd like to know, anyone has ever fiddled around with it?
What are some of your own tag suggestions that you created? Share 'em here, I think it can be useful for everyone ^^
Syntax help
So far I have only figured one, but I plan on adding more to here:
List
1) If there is a diaper tag, there must always be at least one diaper state.
"clean_diaper|wet_diaper|messy_diaper": { "has": "diaper", "not": [ "clean_diaper", "wet_diaper", "messy_diaper" ] }
2) A picture is either colored or not.
"colored|monochrome": { "not": ["colored","monochrome"] }
3) If there is a character, they are either standing or sitting
3a) If a character is sitting, they are sitting on something
3b) If a character is sitting, their legs may be spread or together
"standing|sitting":{"has":"REGEXP:/^(solo|duo|trio|group)$/","not":["standing","sitting"]} "sitting_on_ground|sitting_on_chair|sitting_on_sofa|sitting_on_another":{"has": "sitting", "not": ["on_ground","on_chair","on_sofa","on_another"] } "spread_legs|legs_together":{"has":"sitting","not":["spread_legs","legs_together"]}
Updated