Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Updated 2025/06/07. Sorry for the delay, sorry for not fixing earlier on the issues mentioned in the comments.
추가적인 문제가 있다면 앞으로도 보수하겠습니다. 오랫동안 이 모드를 좋아해 주셔서 감사합니다.
If you have any additional issues, I will continue to repair them. Thank you for liking this mod for a long time.
The first is an optimisation issue that makes the game lag when creating attack effects. In DiceEffectManager_CreateBehaviourEffect, if resource is not from current assembly, EVERY attempt to create effect will result in the whole dll being reloaded from disk (!) with LoadFrom, then all types in it (!) being checked again. Please use Assembly.GetExecutingAssembly() for retrieving the current assembly, and please fill the CustomEffects dictionary only once in OnInitializeMod.
The second is a compatibility issue that is causing bugs and softlocks when combined with some other mods. Normally, BattleDiceCardModel.owner is always set (not null) for cards in deck. But because this mod uses AddCardToHand directly, .owner for them is not set! Please set the card's .owner manually when using AddCardToHand instead of AddNewCard.