LADXR icon indicating copy to clipboard operation
LADXR copied to clipboard

[logic]: dream cave east w/ blue tunic and 10+ hearts

Open foxsouns opened this issue 1 year ago • 2 comments

doable with 10 hearts (1.5 hearts per hit * 6 boosts + 1 heart to survive) probably hard logic? not sure if count works like this, but maybe this would work?

dream_hut_right.connect(dream_hut, AND(COUNT(OR(COUNT(HEART_PIECE, 4), HEART_CONTAINER), 7), BLUE_TUNIC)) # 10 hearts total to damage boost to end

foxsouns avatar Jan 12 '23 17:01 foxsouns

Also depends on start heatlh setting...

daid avatar Jan 12 '23 18:01 daid

placeholder settings, i dont know them lol

if settings.healthmode == "normal" and settings.itempool != "pathofpain":
    dream_hut_right.connect(dream_hut, AND(COUNT(OR(COUNT(HEART_PIECE, 4), HEART_CONTAINER), 7), BLUE_TUNIC)) # 10 hearts total to damage boost to end, requires enough hearts in pool to do so
elseif settings.healthmode == "oneheart" and settings.itempool != "pathofpain":
    dream_hut_right.connect(dream_hut, AND(COUNT(OR(COUNT(HEART_PIECE, 4), HEART_CONTAINER), 9), BLUE_TUNIC))

foxsouns avatar Jan 12 '23 18:01 foxsouns