Add new block types added in 3.3

This commit is contained in:
azakhi
2018-08-09 16:48:11 +03:00
parent 52fc1f6bbc
commit 400688573c
19 changed files with 123 additions and 14 deletions

View File

@@ -266,6 +266,21 @@ namespace Filtration.Parser.Services
}
break;
}
case "GemLevel":
{
AddNumericFilterPredicateItemToBlockItems<GemLevelBlockItem>(block, trimmedLine);
break;
}
case "StackSize":
{
AddNumericFilterPredicateItemToBlockItems<StackSizeBlockItem>(block, trimmedLine);
break;
}
case "HasExplicitMod":
{
AddStringListItemToBlockItems<HasExplicitModBlockItem>(block, trimmedLine);
break;
}
}
}