mirror of
https://github.com/mhwikicn/mhdos-armor-set-searcher
synced 2025-12-06 04:59:04 +08:00
skip female only armor
This commit is contained in:
parent
2c79b05e49
commit
7f2c6d2d20
@ -66,6 +66,10 @@ if __name__ == "__main__":
|
||||
if piece.get("acquire", 0) or piece.get("dev", 0):
|
||||
continue
|
||||
|
||||
# skip if only female
|
||||
if piece.get("sex", "") == "Female":
|
||||
continue
|
||||
|
||||
# get type
|
||||
x = piece.get("hunterClass", "")
|
||||
type = 1 if x == "Blademaster" else 2 if x == "Gunner" else 0
|
||||
|
||||
Loading…
Reference in New Issue
Block a user