Skip to content

Commit

Permalink
火山预览
Browse files Browse the repository at this point in the history
  • Loading branch information
MagicHarp committed Oct 15, 2024
1 parent 8ed1af3 commit d223c5c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1197,6 +1197,7 @@ protected void addTranslations() {
add(Swords.ICE_BLADE.get(), "冰雪剑");
add(Swords.EXOTIC_SCIMITAR.get(), "异域弯刀");
add(Swords.FAKE_SWORD.get(), "假剑");
add(Swords.VOLCANO.get(), "火山");

add(Swords.DEVELOPER_SWORD.get(),"开发者剑");

Expand Down
3 changes: 2 additions & 1 deletion src/main/java/org/confluence/mod/item/sword/Swords.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ public enum Swords implements EnumRegister<SwordItem> {
WHITE_LIGHT_SABER("white_light_saber", LightSaber.White::new),

ICE_BLADE("ice_blade", () -> new IceBladeSwordItem(ModTiers.TITANIUM, 5, -0.1F, new Item.Properties().rarity(ModRarity.BLUE))),
STARFURY("starfury", () -> new StarFurySword(ModTiers.TITANIUM, 6, -0.1f, new Item.Properties().rarity(ModRarity.GREEN))),//新版星怒
STARFURY("starfury", () -> new StarFurySword(ModTiers.TITANIUM, 6, -0.1f, new Item.Properties().rarity(ModRarity.GREEN))),// 新版星怒
ENCHANTED_SWORD("enchanted_sword", () -> new EnchantedSwordItem(ModTiers.TITANIUM, 7, -0.2F, new Item.Properties().rarity(ModRarity.ORANGE))),
VOLCANO("volcano", () -> new BigRegularBroadSwordItem(ModTiers.TITANIUM, 16, -1.4F, new Item.Properties().rarity(ModRarity.ORANGE))),


TERRAGRIM("terragrim", TerragrimItem::new),
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"animation": {
"frametime": 2
}
}

0 comments on commit d223c5c

Please sign in to comment.