lib9c icon indicating copy to clipboard operation
lib9c copied to clipboard

Lib9c is a library that contains key implementations of Nine Chronicles, a decentralized RPG developed with Libplanet. Lib9c includes Nine Chronicle's key features like in-game decisions and data mode...

Results 203 lib9c issues
Sort by recently updated
recently updated
newest added

Bumps [OptimizedPriorityQueue](https://github.com/BlueRaja/High-Speed-Priority-Queue-for-C-Sharp) from 4.2.0 to 5.1.0. Commits 33f4fd3 Updated to version 5.1.0 2a40f66 Remove outdated type restriction cdd7e25 Added strong name to assembly 4ff1cc5 Updated to latest .Net Standard (still...

dependencies
Extra Small

Bumps [Verify.Xunit](https://github.com/VerifyTests/Verify) and [xunit.extensibility.core](https://github.com/xunit/xunit). These dependencies needed to be updated together. Updates `Verify.Xunit` from 17.2.1 to 23.1.0 Release notes Sourced from Verify.Xunit's releases. 21.0.0 Drop unsupported frameworks 20.8.1 As part...

dependencies
Extra Small

Focus 는 어느 상황에도 공격이 성공해야 하는데 공격이 실패하는 경우가 생김. ![Image](https://github.com/planetarium/lib9c/assets/3654082/5f5d6ea8-50e3-4dcf-9284-659fc3e9b821) --- Reference : https://www.notion.so/planetarium/92cbc16b6eca4729892886198724ea0c

bug

ShatterStrike 는 최종 데미지의 상한이 있어 이를 제한해야 한다. 현재 정해진 상한은 방어력 등 모든 내용 적용 후 최종 데미지 40만이다.

enhancement

Reverts planetarium/lib9c#2461 HAS 자체는 새 월드가 중간에 추가돼도 정상적으로 플레이 할 수 있어서 HAS 액션 코드는 리버트하고, 시나리오 테스트를 고치기로 다시 이야기했습니다. 2461번 PR을 리버트하고 시나리오 테스트를 고쳐서 머지하는 것을...

Large

스킬 사용 시 적의 최대 HP 에 비례하는 데미지를 가한다.

enhancement

Although this value is getting updated constantly, it isn't actually referenced anywhere to affect any `IAction` logic other than unnecessarily storing data.

스킬 발동 시 현재 걸린 디버프를 일정 확률로 해제한다. 스킬 지속시간 도중 적이 디버프를 시전한 경우 일정 확률로 이를 회피한다.

Relevant parts are https://github.com/planetarium/lib9c/blob/be6c238677a498e93d692d3510b00234d5b3590f/Lib9c/Model/Item/Inventory.cs#L144-L147 for serialization and https://github.com/planetarium/lib9c/blob/be6c238677a498e93d692d3510b00234d5b3590f/Lib9c/Model/Item/Inventory.cs#L134-L142 https://github.com/planetarium/lib9c/blob/be6c238677a498e93d692d3510b00234d5b3590f/Lib9c/Model/Item/Inventory.cs#L66-L78 for deserialization. Neither guarantees to be deterministic. It just so happens that we haven't had any **serious** problems such as `IAction.Execute()`...