Kybxd

Results 18 issues of Kybxd

Starting from 2m50s: https://www.bilibili.com/video/av24938852

gameplay

When you draw a Darkness Candle, it is resolved at the timing of The Darkness rather than as a normal hand trigger. https://youtu.be/2EHSNSaYJR0 In this video we can see that...

gameplay

https://www.bilibili.com/video/av52735646 (5:00 to 5:35) This is related to Auchenai/Kangor change. The previous resolve order is: First healing is converted to damage, then all damage bonus effect works. So Kangor cannot...

gameplay
may be intended

Similar to #785, test with Hagatha/Farraki Battleaxe. (Starting from 5:53) https://www.bilibili.com/video/av38135301

gameplay

Protobuf now has 3 unexported fields ```golang type MyPbStruct struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields MyInt int32 `protobuf:"varint,1,opt,name=my_int,json=friendRuid,proto3" json:"my_int,omitempty"` } ``` When trying to set this struct zero...

```go func main() { // topStruct is a pointer to TopLevelStruct topStruct := new(TopLevelStruct) fmt.Printf("before using allocate.Zero: %v\n", topStruct) // try to allocate.Zero a pointer to pointer // should be:...