mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-06-05 12:33:57 +08:00
Add support for v3.5.0 (#2090)
* Fix Dvalin battle See https://github.com/Anime-Game-Servers/Grasscutter-Quests/pull/25. This is entirely untested and there's a 99% chance it's broken, I'm just submitting it as a draft PR so that I don't forget about its existence. Co-Authored-By: mjolsic <21289772+mjolsic@users.noreply.github.com> * Update protos * 3.4 protos * Fix Now builds successfully, don't have the time to check if I should have specified true instead of false for withChildQuests, or if this functions as intended. * Change from false to true Per what smileoflove has been told on Discord * 3.5 * Remove the Dvalin crap from this PR Git is so confusing * Update version * Apply README changes from `origin/development` * Remove unnecessary debugging information --------- Co-authored-by: mjolsic <21289772+mjolsic@users.noreply.github.com> Co-authored-by: KingRainbow44 <kobedo11@gmail.com>
This commit is contained in:
committed by
GitHub
Unverified
parent
922f7bca51
commit
516e5975e1
+26
-18
@@ -19,18 +19,22 @@ public final class AvatarEquipAffixInfoOuterClass {
|
||||
com.google.protobuf.MessageOrBuilder {
|
||||
|
||||
/**
|
||||
* <code>uint32 equipAffixId = 1;</code>
|
||||
* <code>uint32 equip_affix_id = 1;</code>
|
||||
* @return The equipAffixId.
|
||||
*/
|
||||
int getEquipAffixId();
|
||||
|
||||
/**
|
||||
* <code>uint32 leftCdTime = 2;</code>
|
||||
* <code>uint32 left_cd_time = 2;</code>
|
||||
* @return The leftCdTime.
|
||||
*/
|
||||
int getLeftCdTime();
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Name: JPOMNGOBDIO
|
||||
* </pre>
|
||||
*
|
||||
* Protobuf type {@code AvatarEquipAffixInfo}
|
||||
*/
|
||||
public static final class AvatarEquipAffixInfo extends
|
||||
@@ -117,10 +121,10 @@ public final class AvatarEquipAffixInfoOuterClass {
|
||||
emu.grasscutter.net.proto.AvatarEquipAffixInfoOuterClass.AvatarEquipAffixInfo.class, emu.grasscutter.net.proto.AvatarEquipAffixInfoOuterClass.AvatarEquipAffixInfo.Builder.class);
|
||||
}
|
||||
|
||||
public static final int EQUIPAFFIXID_FIELD_NUMBER = 1;
|
||||
public static final int EQUIP_AFFIX_ID_FIELD_NUMBER = 1;
|
||||
private int equipAffixId_;
|
||||
/**
|
||||
* <code>uint32 equipAffixId = 1;</code>
|
||||
* <code>uint32 equip_affix_id = 1;</code>
|
||||
* @return The equipAffixId.
|
||||
*/
|
||||
@java.lang.Override
|
||||
@@ -128,10 +132,10 @@ public final class AvatarEquipAffixInfoOuterClass {
|
||||
return equipAffixId_;
|
||||
}
|
||||
|
||||
public static final int LEFTCDTIME_FIELD_NUMBER = 2;
|
||||
public static final int LEFT_CD_TIME_FIELD_NUMBER = 2;
|
||||
private int leftCdTime_;
|
||||
/**
|
||||
* <code>uint32 leftCdTime = 2;</code>
|
||||
* <code>uint32 left_cd_time = 2;</code>
|
||||
* @return The leftCdTime.
|
||||
*/
|
||||
@java.lang.Override
|
||||
@@ -206,9 +210,9 @@ public final class AvatarEquipAffixInfoOuterClass {
|
||||
}
|
||||
int hash = 41;
|
||||
hash = (19 * hash) + getDescriptor().hashCode();
|
||||
hash = (37 * hash) + EQUIPAFFIXID_FIELD_NUMBER;
|
||||
hash = (37 * hash) + EQUIP_AFFIX_ID_FIELD_NUMBER;
|
||||
hash = (53 * hash) + getEquipAffixId();
|
||||
hash = (37 * hash) + LEFTCDTIME_FIELD_NUMBER;
|
||||
hash = (37 * hash) + LEFT_CD_TIME_FIELD_NUMBER;
|
||||
hash = (53 * hash) + getLeftCdTime();
|
||||
hash = (29 * hash) + unknownFields.hashCode();
|
||||
memoizedHashCode = hash;
|
||||
@@ -306,6 +310,10 @@ public final class AvatarEquipAffixInfoOuterClass {
|
||||
return builder;
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Name: JPOMNGOBDIO
|
||||
* </pre>
|
||||
*
|
||||
* Protobuf type {@code AvatarEquipAffixInfo}
|
||||
*/
|
||||
public static final class Builder extends
|
||||
@@ -460,7 +468,7 @@ public final class AvatarEquipAffixInfoOuterClass {
|
||||
|
||||
private int equipAffixId_ ;
|
||||
/**
|
||||
* <code>uint32 equipAffixId = 1;</code>
|
||||
* <code>uint32 equip_affix_id = 1;</code>
|
||||
* @return The equipAffixId.
|
||||
*/
|
||||
@java.lang.Override
|
||||
@@ -468,7 +476,7 @@ public final class AvatarEquipAffixInfoOuterClass {
|
||||
return equipAffixId_;
|
||||
}
|
||||
/**
|
||||
* <code>uint32 equipAffixId = 1;</code>
|
||||
* <code>uint32 equip_affix_id = 1;</code>
|
||||
* @param value The equipAffixId to set.
|
||||
* @return This builder for chaining.
|
||||
*/
|
||||
@@ -479,7 +487,7 @@ public final class AvatarEquipAffixInfoOuterClass {
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <code>uint32 equipAffixId = 1;</code>
|
||||
* <code>uint32 equip_affix_id = 1;</code>
|
||||
* @return This builder for chaining.
|
||||
*/
|
||||
public Builder clearEquipAffixId() {
|
||||
@@ -491,7 +499,7 @@ public final class AvatarEquipAffixInfoOuterClass {
|
||||
|
||||
private int leftCdTime_ ;
|
||||
/**
|
||||
* <code>uint32 leftCdTime = 2;</code>
|
||||
* <code>uint32 left_cd_time = 2;</code>
|
||||
* @return The leftCdTime.
|
||||
*/
|
||||
@java.lang.Override
|
||||
@@ -499,7 +507,7 @@ public final class AvatarEquipAffixInfoOuterClass {
|
||||
return leftCdTime_;
|
||||
}
|
||||
/**
|
||||
* <code>uint32 leftCdTime = 2;</code>
|
||||
* <code>uint32 left_cd_time = 2;</code>
|
||||
* @param value The leftCdTime to set.
|
||||
* @return This builder for chaining.
|
||||
*/
|
||||
@@ -510,7 +518,7 @@ public final class AvatarEquipAffixInfoOuterClass {
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <code>uint32 leftCdTime = 2;</code>
|
||||
* <code>uint32 left_cd_time = 2;</code>
|
||||
* @return This builder for chaining.
|
||||
*/
|
||||
public Builder clearLeftCdTime() {
|
||||
@@ -586,10 +594,10 @@ public final class AvatarEquipAffixInfoOuterClass {
|
||||
descriptor;
|
||||
static {
|
||||
java.lang.String[] descriptorData = {
|
||||
"\n\032AvatarEquipAffixInfo.proto\"@\n\024AvatarEq" +
|
||||
"uipAffixInfo\022\024\n\014equipAffixId\030\001 \001(\r\022\022\n\nle" +
|
||||
"ftCdTime\030\002 \001(\rB\033\n\031emu.grasscutter.net.pr" +
|
||||
"otob\006proto3"
|
||||
"\n\032AvatarEquipAffixInfo.proto\"D\n\024AvatarEq" +
|
||||
"uipAffixInfo\022\026\n\016equip_affix_id\030\001 \001(\r\022\024\n\014" +
|
||||
"left_cd_time\030\002 \001(\rB\033\n\031emu.grasscutter.ne" +
|
||||
"t.protob\006proto3"
|
||||
};
|
||||
descriptor = com.google.protobuf.Descriptors.FileDescriptor
|
||||
.internalBuildGeneratedFileFrom(descriptorData,
|
||||
|
||||
Reference in New Issue
Block a user