When creating a rank with SMODS.Rank, there's a pos table that lets you use a suit_map to extend your rank across other people's particular suit mods. However, if you have a custom suit and you want to be able to support another mod's custom rank, there's not a clean solution other than maybe taking ownership of the rank and changing the atlas and suit_map.
It would be nice if you could manually interface with your suit definition to define a rank_map so that you can go like
rank_map = {
"2" = 0,
"3" = 1,
....
"Ace" = 12,
"OtherModsSpecialRank" = 13,
}
When creating a rank with
SMODS.Rank, there's apostable that lets you use asuit_mapto extend your rank across other people's particular suit mods. However, if you have a custom suit and you want to be able to support another mod's custom rank, there's not a clean solution other than maybe taking ownership of the rank and changing the atlas and suit_map.It would be nice if you could manually interface with your suit definition to define a
rank_mapso that you can go like