Replace certain values in one list with values in another list

I have two lists of booleans, one with “True” marked for Family Types’ names ending with one word (“Elevation”) and the other with names ending with another word (“Plan”). I want to create one list of booleans which gives all the “True” values from both lists. The two lists have identical lacing and number of items because they come from the same source. How can I get the single, unified list I am looking for?

If you want the one list of booleans to return true if both conditions are true, you want AND (&&).
If you want the one list of booleans to return true if either condition is true, you want OR (||).

image