3) Something to help get Got Milk in TCRS. Perhaps "tcrs milk" could list all the sources for that effect for you.
This is my TCRS find effects script bit. Easy to add other effects as needed:
PHP:
foreach get in $effects[
Got Milk,
Stone-Faced,
Dirty Pear,
Crappily Disguised as a Waiter,
Fifty Ways to Bereave Your Lover,
] {
foreach it in $items[] {
effect ef = effect_modifier(it,"Effect");
string ss = string_modifier(ef,"Evaluated Modifiers");
int dd = to_int(numeric_modifier(it,"Effect Duration"));
if (is_unrestricted(it) && ef==get) { print(it+" : "+ef+" = "+ss+" ("+dd+")","blue"); }
}
}