Last active
December 22, 2023 12:03
-
-
Save RisingInIris2017/d6aa354eccb0d7a68d35ac885f1fbe39 to your computer and use it in GitHub Desktop.
复现 issue 所需的配置文件(共有两个)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configuration file | |
########################################################################################################## | |
# effects | |
#--------------------------------------------------------------------------------------------------------# | |
# Add potions effects that will be applied to players on respawn | |
########################################################################################################## | |
effects { | |
# Set to true to enable effects module | |
B:"Enable Effects Module"=true | |
# List of effects to apply to players on respawn that can be cured by the curing items list | |
# Format: [effect] [duration(secs)] [power] | |
S:"Curable Respawn Effects" < | |
> | |
# List of items that will be used by 'Curable Respawn Effects' | |
S:"Curative Items" < | |
minecraft:milk_bucket | |
> | |
# List of effects to apply to player on respawn | |
# Format: [effect] [duration(secs)] [power] | |
S:"Uncurable Respawn Effects" < | |
minecraft:invisibility 20 1 | |
> | |
########################################################################################################## | |
# custom respawn effect | |
#--------------------------------------------------------------------------------------------------------# | |
# Customize your own respawn effect for modifying player attributes | |
########################################################################################################## | |
"custom respawn effect" { | |
# Set to true to enable custom effect applied on respawn | |
B:"Enable Custom Respawn Effect"=true | |
# Set duration (seconds) for the effect | |
I:Duration=20 | |
# List of items that can cure the effect | |
S:"Curative Items" < | |
> | |
# Set to true to enable gradual recovery (modifiers will diminish gradually as the effect goes on) | |
B:"Gradual Recovery"=false | |
# Set maximum health modifier | |
D:"Maximum Health Modifier"=0.0 | |
# Set armor modifier | |
D:"Armor Modifier"=0.0 | |
# Set armor toughness modifier | |
D:"Armor Toughness Modifier"=0.0 | |
# Set attack damage modifier | |
D:"Attack Damage Modifier"=-2048 | |
# Set attack speed percent modifier | |
D:"Attack Speed Percent Modifier"=-1.0 | |
# Set movement speed percent modifier | |
D:"Movement Speed Percent Modifier"=0.3 | |
# Set to true to disable eating food while effect is active | |
B:"Cannot Eat Food"=true | |
# Set to true to disable gaining experience while effect is active | |
B:"Cannot Gain XP"=false | |
} | |
} | |
########################################################################################################## | |
# experience | |
#--------------------------------------------------------------------------------------------------------# | |
# Customize experience loss on death | |
########################################################################################################## | |
experience { | |
# Set to true to enable experience module | |
B:"Enable Experience Module"=true | |
# Set to true to keep all XP on death | |
B:"Keep All XP"=true | |
# Percent of experience lost on death | |
D:"Lost XP Percent"=0.25 | |
# Maximum amount of experience that can be recovered, 0 to disable | |
I:"Maximum Recoverable XP"=0 | |
# Percent of lost experience that can be recovered | |
D:"Recoverable XP Percent"=1.0 | |
} | |
########################################################################################################## | |
# hunger | |
#--------------------------------------------------------------------------------------------------------# | |
# Customize hunger and saturation values on respawn | |
########################################################################################################## | |
hunger { | |
# Set to true to enable hunger module | |
B:"Enable Hunger Module"=true | |
# Set to true to retain food level on death | |
B:"Keep Food Level"=true | |
# Highest amount of food level you can respawn with | |
I:"Maximum Food Level"=17 | |
# Lowest amount of food level you can respawn with | |
I:"Minimum Food Level"=7 | |
# Set to true to retain saturation on death | |
B:"Keep Saturation"=false | |
} | |
########################################################################################################## | |
# inventory | |
#--------------------------------------------------------------------------------------------------------# | |
# Customize how your inventory is handled on death and respawn | |
########################################################################################################## | |
inventory { | |
# Set to true to enable inventory module | |
B:"Enable Inventory Module"=true | |
# Set to true to keep equipped armor on death | |
B:"Keep Armor"=true | |
# Set to true to keep non-mainhand hotbar items on death | |
B:"Keep Hotbar"=true | |
# Set to true to keep mainhand item on death | |
B:"Keep Mainhand"=true | |
# Set to true to keep offhand item on death | |
B:"Keep Offhand"=true | |
# Set to true to keep main inventory (non-equipped non-hotbar) items on death | |
B:"Keep Main Inventory"=true | |
# Percent of durability lost on death for drops | |
D:"Durability Loss on Drops"=0.0 | |
# Percent of durability lost on death for drops on easy difficulty | |
D:"Durability Loss on Drops on Easy"=0.0 | |
# Percent of durability lost on death for drops on normal difficulty | |
D:"Durability Loss on Drops on Normal"=0.0 | |
# Percent of durability lost on death for kept items | |
D:"Durability Loss on Kept Items"=0.25 | |
# Percent of durability lost on death for Kept Items on easy difficulty | |
D:"Durability Loss on Kept Items on Easy"=0.05 | |
# Percent of durability lost on death for Kept Items on normal difficulty | |
D:"Durability Loss on Kept Items on Normal"=0.1 | |
# Percent of energy drained on death for drops | |
D:"Energy Drain on Drops"=0.0 | |
# Percent of energy drained on death for kept items | |
D:"Energy Drain on Kept Items"=0.0 | |
# Percent chance that items that are kept will still drop | |
D:"Random Drop Chance"=0.0 | |
# Set to true to only apply random drop chance to the main inventory | |
B:"Random Drop Only Main Inventory"=false | |
# Percent chance that dropped items will be destroyed | |
D:"Random Destroy Chance"=0.0 | |
# List of items that are always kept | |
S:"Essential Items" < | |
> | |
# List of items that are always dropped | |
S:"Cursed Items" < | |
> | |
# Set to true to destroy cursed items instead of dropping them | |
B:"Destroy Cursed Items"=false | |
# Time (in seconds) to set for drop despawn timer, -1 for vanilla | |
I:"Drop Despawn Timer"=-1 | |
# Set to true to make the durability loss on drops dependent on world difficulty | |
B:"Durability Loss Dependent on Difficulty"=true | |
# Percent of durability lost on death for drops on hard difficulty | |
D:"Durability Loss on Drops Hard"=0.0 | |
# Percent of durability lost on death for Kept Items on hard difficulty | |
D:"Durability Loss on Kept Items Hard"=0.25 | |
# Set to true to keep Baubles on death | |
B:"Keep Baubles"=true | |
# Set to true to keep Cosmetic Armor on death | |
B:"Keep Cosmetic Armor"=false | |
# Set to true to keep Wearable Backpack on death | |
B:"Keep Wearable Backpack"=false | |
# Set to true to make the durability loss on kept items dependent on world difficulty | |
B:"Kept Durability Loss Dependent on Difficulty"=true | |
# Set to true to limit durability loss so that items will never break due to death penalities | |
B:"Limit Durability Loss"=true | |
# Set to true to prevent death drops from despawning | |
B:"No Drop Despawn"=false | |
########################################################################################################## | |
# soulbinding | |
#--------------------------------------------------------------------------------------------------------# | |
# Enable and customize the soulbinding enchantment | |
########################################################################################################## | |
soulbinding { | |
# Set to true to enable Soulbinding enchantment | |
B:"Enable Soulbinding Enchantment"=false | |
# The max level of the enchantment | |
I:"Max Level"=1 | |
# The percent chance that the item will drop a level in the enchantment on death when kept | |
D:"Chance to Drop Level on Saved Item"=0.0 | |
# The base percent chance that the enchantment will save an item on death regardless of level | |
D:"Base Save Probability"=1.0 | |
# The percent chance increase that each level in the enchantment will give to saving an item on death | |
D:"Extra Save Probability per Level"=0.0 | |
# Set to true to allow enchanting Soulbinding at the enchantment table | |
B:"Can Apply at Enchanting Table"=true | |
# Set to true to allow enchanting Soulbinding on books | |
B:"Allowed on Books"=true | |
# The rarity of the enchantment (COMMON, UNCOMMON, RARE, or VERY_RARE) | |
S:Rarity=VERY_RARE | |
} | |
} | |
########################################################################################################## | |
# respawning | |
#--------------------------------------------------------------------------------------------------------# | |
# Customize general respawning rules | |
########################################################################################################## | |
respawning { | |
# Set to true to enable respawning module features | |
B:"Enable Respawning Module"=true | |
# Set to true to disable beds setting spawn points | |
B:"Disable Bed Spawn Points"=false | |
# If Return Scroll is true, set to true to automatically give players a return scroll on respawn | |
B:"Give Scroll on Respawn"=true | |
# A list of items to give players on respawn. The format is modid:item_name;stacksize;metadata. | |
S:"Respawn Items" < | |
> | |
# Set to true to enable a craftable return scroll that teleports players to their death location | |
B:"Return Scroll"=true | |
# Mobs to spawn at location on death | |
S:"Spawn Mobs on Death" < | |
> | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Configuration file | |
client { | |
B:EnchantVisualEffect=true | |
B:FPVDisabledSyncPitch=true | |
B:FPVNoBlur=true | |
B:FPVOldStryleLike=true | |
B:NFCSVisualEffect=true | |
B:SneakForceLockOn=false | |
B:UseRenderLivingEvent=false | |
} | |
difficulty { | |
I:DamageAPLimit=-1 | |
I:DamageAPMultiplier=110 | |
I:DamageLimit=-1 | |
I:DamageMultiplier=75 | |
I:RankpointRange=100 | |
I:RankpointUpRate=100 | |
I:RankpointUpRateTaunt=150 | |
I:WhiffsRankDownRate=10 | |
} | |
general { | |
S:AttackableTargets < | |
"WebSpider:true" | |
"twilightforest.king_spider:true" | |
"TaintacleGiant:true" | |
"EnderCreeper:true" | |
"Donkey:false" | |
"dcs.magic.dcs_blackdog:false" | |
"twilightforest.tower_golem:true" | |
"SplittingCreeper:true" | |
"BabyGhast:true" | |
"bosszombie:true" | |
"CaramelSlime:true" | |
"abyssalcraft.coraliumsquid:false" | |
"touhou_little_maid.chair:false" | |
"FireSkeleton:true" | |
"Golem:false" | |
"SpecialSlime:true" | |
"EnderDragon:true" | |
"HardenedLavaSlime:true" | |
"ThaumSlime:true" | |
"twilightforest.firefly:false" | |
"touhou_little_maid.rinnosuke:true" | |
"LightningEnderman:true" | |
"DrowningCreeper:true" | |
"SnowMan:false" | |
"dcs.main.coat_rack:true" | |
"SpecialZombie:true" | |
"furantur:true" | |
"twilightforest.tower_ghast:true" | |
"ElderGuardian:true" | |
"twilightforest.mosquito_swarm:true" | |
"DirtCreeper:true" | |
"WitherSkeleton:true" | |
"CultistPortalLesser:true" | |
"twilightforest.maze_slime:true" | |
"FishingSilverfish:true" | |
"DeathCreeper:true" | |
"abyssalcraft.antibat:false" | |
"Chicken:false" | |
"GravelCreeper:true" | |
"VillagerGolem:false" | |
"Endermite:true" | |
"twilightforest.helmet_crab:true" | |
"EldritchGolem:true" | |
"twilightforest.giant_miner:true" | |
"twilightforest.stable_ice_core:true" | |
"JoltBlaze:true" | |
"BlackberrySlime:true" | |
"DarkCreeper:true" | |
"LemonSlime:true" | |
"WildsWitch:true" | |
"abyssalcraft.antiabyssalzombie:true" | |
"CultistKnight:true" | |
"GiantZombie:true" | |
"GiantWitherSkeleton:true" | |
"tofucraft.Tofunian:false" | |
"Wolf:false" | |
"StrawberrySlime:true" | |
"mountbunny:true" | |
"twilightforest.knight_phantom:true" | |
"FighterGhast:true" | |
"EldritchWarden:true" | |
"twilightforest.goblin_knight_lower:true" | |
"GiantSpider:true" | |
"Husk:true" | |
"abyssalcraft.evilchicken:true" | |
"Slime:true" | |
"twilightforest.redcap:true" | |
"twilightforest.wild_boar:false" | |
"EmberBlaze:true" | |
"GiantPigZombie:true" | |
"Llama:false" | |
"WatermelonSlime:true" | |
"PigZombie:true" | |
"archer:true" | |
"touhou_little_maid.maid:false" | |
"touhou_little_maid.trolley_audio:false" | |
"PaleSpider:true" | |
"HungryZombie:true" | |
"tofucraft.TofuMindCore:true" | |
"botania:pinkWither:true" | |
"CultistCleric:true" | |
"botania:doppleganger:true" | |
"abyssalcraft.dreadspawn:true" | |
"SpecialPigZombie:true" | |
"DesertSpider:true" | |
"twilightforest.goblin_knight_upper:true" | |
"SniperWitherSkeleton:true" | |
"SpecialSpider:true" | |
"PoisonSilverfish:true" | |
"touhou_little_maid.suitcase:false" | |
"abyssalcraft.greaterdreadspawn:true" | |
"mobBoat:true" | |
"BabySpider:true" | |
"tofucraft.TofuCow:false" | |
"WitchCaveSpider:true" | |
"NinjaWitherSkeleton:true" | |
"TaintSeed:true" | |
"EldritchGuardian:true" | |
"LavaSlime:true" | |
"tofucraft.TofuFish:false" | |
"ShadowsWitch:true" | |
"futuremc:bee:false" | |
"TaintCrawler:true" | |
"FishingZombie:true" | |
"EldritchCrab:true" | |
"MotherSpider:true" | |
"twilightforest.loyal_zombie:false" | |
"Enderman:true" | |
"botania:pixie:true" | |
"twilightforest.snow_guardian:true" | |
"twilightforest.slime_beetle:true" | |
"KingGhast:true" | |
"mountturtle:true" | |
"dcs.main.balloon_crow:true" | |
"Stray:true" | |
"MiniCreeper:true" | |
"StraySkeleton:true" | |
"FlyingCaveSpider:true" | |
"twilightforest.pinch_beetle:true" | |
"twilightforest.redcap_sapper:true" | |
"tofucraft.TofuGandlem:true" | |
"twilightforest.castle_guardian:true" | |
"DoomCreeper:true" | |
"Silverfish:true" | |
"DominationWitch:true" | |
"tofucraft.TofuSlime:true" | |
"mounthorse:true" | |
"GatlingSkeleton:true" | |
"VampirePigZombie:true" | |
"StickyLavaSlime:true" | |
"ArmorStand:true" | |
"twilightforest.unstable_ice_core:true" | |
"abyssalcraft.dragonminion:true" | |
"BabyCaveSpider:true" | |
"FlyingSilverfish:true" | |
"Skeleton:true" | |
"ToughSilverfish:true" | |
"SkeletonHorse:false" | |
"illager_king:true" | |
"PolarBear:false" | |
"Ozelot:false" | |
"abyssalcraft.omotholghoul:true" | |
"touhou_little_maid.fairy:true" | |
"Wisp:true" | |
"abyssalcraft.antiskeleton:true" | |
"abyssalcraft.antispider:true" | |
"twilightforest.lich_minion:true" | |
"twilightforest.penguin:false" | |
"twilightforest.rising_zombie:true" | |
"Spider:true" | |
"abyssalcraft.anticreeper:true" | |
"HuskZombie:true" | |
"twilightforest.naga:true" | |
"BlindingEnderman:true" | |
"abyssalcraft.antizombie:true" | |
"futuremc:tropical_fish:true" | |
"twilightforest.deer:false" | |
"player_ghost:true" | |
"touhou_little_maid.maid_vehicle:false" | |
"enchanter:true" | |
"TurretBasic:false" | |
"abyssalcraft.antiplayer:true" | |
"abyssalcraft.evilsheep:true" | |
"twilightforest.ur_ghast:true" | |
"ArcaneBore:false" | |
"twilightforest.minoshroom:true" | |
"Villager:false" | |
"KnightPigZombie:true" | |
"WitchSpider:true" | |
"Guardian:true" | |
"HungrySpider:true" | |
"twilightforest.blockchain_goblin:true" | |
"Pech:true" | |
"twilightforest.raven:false" | |
"MindSpider:true" | |
"PlaguePigZombie:true" | |
"MushroomCow:false" | |
"abyssalcraft.remnant:true" | |
"twilightforest.quest_ram:false" | |
"Taintacle:true" | |
"abyssalcraft.dreadgolem:true" | |
"abyssalcraft.chagarothfist:true" | |
"BrutePigZombie:true" | |
"SpecialLavaSlime:true" | |
"GiantBrainyZombie:true" | |
"twilightforest.boggard:true" | |
"GiantSkeleton:true" | |
"InfernoBlaze:true" | |
"Spellbat:true" | |
"ConflagrationBlaze:true" | |
"twilightforest.roving_cube:true" | |
"PoisonSpider:true" | |
"CaveSpider:true" | |
"twilightforest.swarm_spider:true" | |
"SniperSkeleton:true" | |
"FireZombie:true" | |
"ZombieVillager:true" | |
"abyssalcraft.chagaroth:true" | |
"PoisonSkeleton:true" | |
"futuremc:salmon:true" | |
"abyssalcraft.anticow:false" | |
"twilightforest.death_tome:true" | |
"abyssalcraft.antipig:false" | |
"twilightforest.kobold:true" | |
"twilightforest.tiny_bird:false" | |
"twilightforest.hydra_head:true" | |
"SpitfireWitherSkeleton:true" | |
"FlyingSpider:true" | |
"touhou_little_maid.portable_audio:false" | |
"twilightforest.harbinger_cube:true" | |
"KnightWitherSkeleton:true" | |
"Rabbit:false" | |
"touhou_little_maid.scarecrow:false" | |
"InhabitedZombie:true" | |
"LightningCreeper:true" | |
"BlueberrySlime:true" | |
"twilightforest.hydra:true" | |
"BruteZombie:true" | |
"dcs.magic.dcs_crowdoll:true" | |
"abyssalcraft.dreadguard:true" | |
"CinderBlaze:true" | |
"abyssalcraft.demonchicken:true" | |
"SpecialEnderman:true" | |
"ThiefEnderman:true" | |
"WindWitch:true" | |
"UnholyGhast:true" | |
"abyssalcraft.Jzahar:true" | |
"SpecialWitch:true" | |
"twilightforest.mini_ghast:true" | |
"Witch:true" | |
"GrapeSlime:true" | |
"TaintSwarm:true" | |
"SpecialWitherSkeleton:true" | |
"WildfireBlaze:true" | |
"abyssalcraft.shadowbeast:true" | |
"Mule:false" | |
"mountgecko:true" | |
"SpecialBlaze:true" | |
"abyssalcraft.antichicken:false" | |
"abyssalcraft.antighoul:true" | |
"BrainyZombie:true" | |
"Firebat:true" | |
"Cow:false" | |
"twilightforest.squirrel:false" | |
"Pig:false" | |
"MirageEnderman:true" | |
"EvocationIllager:true" | |
"Blaze:true" | |
"WitherBoss:true" | |
"sakura.SamuraiIllager:true" | |
"twilightforest.winter_wolf:true" | |
"abyssalcraft.chagarothspawn:true" | |
"bossskeleton:true" | |
"MotherCaveSpider:true" | |
"twilightforest.hostile_wolf:true" | |
"Dummy:true" | |
"touhou_little_maid.marisa_broom:false" | |
"abyssalcraft.shuboffspring:true" | |
"twilightforest.tower_broodling:true" | |
"twilightforest.ice_crystal:true" | |
"abyssalcraft.shadowboss:true" | |
"Vex:true" | |
"abyssalcraft.abygolem:true" | |
"abyssalcraft.abyssalzombie:true" | |
"futuremc:panda:false" | |
"IllusionIllager:true" | |
"hostilebat:true" | |
"futuremc:cod:true" | |
"twilightforest.adherent:true" | |
"mountpegasus:true" | |
"twilightforest.fire_beetle:true" | |
"Horse:false" | |
"twilightforest.armored_giant:true" | |
"TaintSeedPrime:true" | |
"abyssalcraft.dreadling:true" | |
"JumpingCreeper:true" | |
"twilightforest.troll:true" | |
"FishingPigZombie:true" | |
"Zombie:true" | |
"twilightforest.mist_wolf:true" | |
"Parrot:false" | |
"twilightforest.hedge_spider:true" | |
"VindicationIllager:true" | |
"futuremc:pufferfish:true" | |
"SpitfireSkeleton:true" | |
"KnightSkeleton:true" | |
"ZombieHorse:false" | |
"abyssalcraft.jzaharminion:true" | |
"twilightforest.bighorn_sheep:false" | |
"twilightforest.yeti:true" | |
"abyssalcraft.shadowmonster:true" | |
"BlindingSilverfish:true" | |
"FireCreeper:true" | |
"Giant:true" | |
"abyssalcraft.dragonboss:true" | |
"twilightforest.skeleton_druid:true" | |
"SpecialSkeleton:true" | |
"claysoldier:true" | |
"SpecialCreeper:true" | |
"BruteSkeleton:true" | |
"Creeper:true" | |
"UndeadWitch:true" | |
"abyssalcraft.demoncow:true" | |
"twilightforest.minotaur:true" | |
"WebCaveSpider:true" | |
"TurretAdvanced:false" | |
"VolatileLavaSlime:true" | |
"Shulker:true" | |
"tofucraft.TofuTurret:true" | |
"twilightforest.lich:true" | |
"NinjaSkeleton:true" | |
"SpecialCaveSpider:true" | |
"SpecialSilverfish:true" | |
"abyssalcraft.demonpig:true" | |
"HungryPigZombie:true" | |
"MiniEnderman:true" | |
"IcyEnderman:true" | |
"twilightforest.tower_termite:true" | |
"twilightforest.bunny:false" | |
"Squid:false" | |
"HellfireBlaze:true" | |
"abyssalcraft.evilpig:true" | |
"tofucraft.TofuSpider:true" | |
"CultistPortalGreater:true" | |
"abyssalcraft.evilcow:true" | |
"FlyingLavaSlime:true" | |
"PlagueZombie:true" | |
"abyssalcraft.demonsheep:true" | |
"necromancer:true" | |
"hoarder:true" | |
"BruteWitherSkeleton:true" | |
"tofucraft.TofuChinger:true" | |
"QueenGhast:true" | |
"abyssalcraft.lesserdreadbeast:true" | |
"abyssalcraft.depthsghoul:true" | |
"CultistLeader:true" | |
"abyssalcraft.lessershoggoth:true" | |
"Bat:false" | |
"TaintacleTiny:true" | |
"twilightforest.wraith:true" | |
"twilightforest.yeti_alpha:true" | |
"twilightforest.snow_queen:true" | |
"abyssalcraft.gskeleton:true" | |
"dcs.magic.dcs_flametongue:false" | |
"abyssalcraft.shadowcreature:true" | |
"Ghast:true" | |
"Sheep:false" | |
"SpecialGhast:true" | |
"sakura.Deer:false" | |
"GatlingWitherSkeleton:true" | |
> | |
S:CustomBlade < | |
dios | |
newbie | |
souldevourerbamboolight | |
> | |
D:DarkRavenDropRate=0.05000000074505806 | |
S:DestructableTargets < | |
"EntityIceArrow:true" | |
"EntityDesktopAccessories_H:false" | |
"EntityDesktopAccessories_I:false" | |
"EntityShotgunBullet:true" | |
"SimmeredNattoEntity:false" | |
"DrinkGingerEntity:false" | |
"EntitySpinningSword:true" | |
"WagashiIsobeEntity:false" | |
"EntityTFHydraMortar:true" | |
"ClubSandwichREntity:false" | |
"PlateBigGarlicEntity:false" | |
"SauceLiverEntity:false" | |
"EntityParticle:true" | |
"EntityXPOrbBig:false" | |
"EntityHelmBrakerManager:true" | |
"EntityItemFrame:false" | |
"EntityGrimGrip:false" | |
"EntityProjDogSpit:true" | |
"EntityTFFallingIce:false" | |
"EntityBeam:true" | |
"EntityDesktopAccessories_B:false" | |
"EntityDesktopAccessories_C:false" | |
"EntityDynamiteBlue:false" | |
"EntityMobBarrier:false" | |
"EntityDesktopAccessories_A:false" | |
"EntityFocusCloud:false" | |
"EntityDesktopAccessories_F:false" | |
"WagashiButterEntity:false" | |
"EntityDesktopAccessories_G:false" | |
"EntityDesktopAccessories_D:false" | |
"EntityDesktopAccessories_E:false" | |
"EntityTFSlideBlock:false" | |
"ERC_EntityCoasterSeat:false" | |
"EntityTNTPrimed:true" | |
"PlateBigChickenEntity:false" | |
"SimmeredGomokuEntity:false" | |
"EntityLlamaSpit:true" | |
"EntityCoraliumArrow:true" | |
"EntityBoatElectric:false" | |
"EntityFlowerPot:false" | |
"EntitySignalFlare:false" | |
"EntityAquaEdge:true" | |
"BreadPitaEntity:false" | |
"EntitySnowBallNew:true" | |
"PieFruitEntity:false" | |
"EntityLumberManager:false" | |
"FriedChickenEntity:false" | |
"FriedPorkGingerEntity:false" | |
"EntityEnderCrystal:false" | |
"StewChiliEntity:false" | |
"ParfaitCitrusEntity:false" | |
"EntityMinecartHopper:false" | |
"EntitySakuraEndManager:true" | |
"EmptyPlateEntity:false" | |
"IceCreamEntity:false" | |
"PastaOilEntity:false" | |
"EntitySilverBullet:true" | |
"EntityFireworkRocket:false" | |
"EntityDreadSlug:true" | |
"DishTacoEntity:false" | |
"EntityInkProjectile:true" | |
"EntityImplosion:false" | |
"StickMarshmallowEntity:false" | |
"SandwichLemonEntity:false" | |
"CauldronTracker:false" | |
"DrinkTomatoEntity:false" | |
"DishOmericeEntity:false" | |
"EntitySmallFireball:true" | |
"StickBeefEntity:false" | |
"SaladTofuEntity:false" | |
"EntityMagicCushion:false" | |
"BreadSausageEntity:false" | |
"EntityArcticSpark:false" | |
"EntityRiceBallMiso:false" | |
"EntityEnderAirBottle:true" | |
"EntityMaidJoy:false" | |
"EntityGhostBullet:true" | |
"TartLiverEntity:false" | |
"CakeCreamEntity:false" | |
"EntityRiceSekihan:false" | |
"EntityItnt:false" | |
"EntityFocusProjectile:true" | |
"EntitySummonedBlade:true" | |
"EntityLargeFireball:true" | |
"EntityProjLightSpit:true" | |
"EntityStingerManager:true" | |
"EntityODBcPrimed:false" | |
"EntityRiceBallRoe:false" | |
"FallingMeteor:false" | |
"EntityDragonFireball:true" | |
"TartLemonEntity:false" | |
"SandwichEggEntity:false" | |
"EntityTippedChingerArrow:true" | |
"EntityLightningSword:true" | |
"StewCongeeEntity:false" | |
"BreadToastEntity:false" | |
"DishSushiEntity:false" | |
"EntityProjWhiteSpit:true" | |
"EntityFlameRing:false" | |
"PastaSquidEntity:false" | |
"EntitySlashDimension:true" | |
"PlateSoupEntity:false" | |
"DishSashimiEntity:false" | |
"StewPurpleEntity:false" | |
"EntityGrimGripKey:false" | |
"StewLotusrootEntity:false" | |
"EntitySpecialItem:false" | |
"MealShawarmaEntity:false" | |
"PastaBasilEntity:false" | |
"StewVegiEntity:false" | |
"EntitySizedTNTPrimed:true" | |
"CurryBeansEntity:false" | |
"EntityTFMoonwormShot:true" | |
"DrinkKuzuEntity:false" | |
"StewMisosoupEntity:false" | |
"CakeGreenteaEntity:false" | |
"BreadGrahamCrackerEntity:false" | |
"YogurtSPEntity:false" | |
"PlatePaellaEntity:false" | |
"EntitySpecialFishHook:false" | |
"EntityProjectileGravel:true" | |
"CakeRaisinEntity:false" | |
"DishMaboEntity:false" | |
"SandwichLiverEntity:false" | |
"EntityDrive:true" | |
"EntityTFIceBomb:true" | |
"EntityTntNew:true" | |
"EntityTFNatureBolt:true" | |
"UdonMeatEntity:false" | |
"EntityFallingBlock:false" | |
"CakeGrapeEntity:false" | |
"EntityDpsFloatingNumber:false" | |
"EntityGolemDart:true" | |
"EntityProjBarrier:false" | |
"EntitySnowball:true" | |
"CurryRiceEntity:false" | |
"DishCapreseEntity:false" | |
"EntityFlowerBolt:true" | |
"BreadCinnamonEntity:false" | |
"EntityLeashKnot:false" | |
"PizzaTomatoEntity:false" | |
"EntityBlackHole:false" | |
"EntityDanmaku:true" | |
"SauceSalsaEntity:false" | |
"EntityThrowPowerPoint:true" | |
"ERC_EntityCoasterMonodentate:false" | |
"EntityRiceBallSeaweed:false" | |
"EntityTrident:true" | |
"WagashiNerikiriEntity:false" | |
"EntityRiceBowl:false" | |
"EntityJail:false" | |
"CakeSmoreEntity:false" | |
"FireproofItem:false" | |
"EntityCausalityCollapser:true" | |
"EntityTFSlimeProjectile:true" | |
"EntityTFLichBolt:true" | |
"StickGoheiEntity:false" | |
"EntitySummonedSwordBase:true" | |
"EntityRapidSlashManager:true" | |
"EntityHealBarrier:false" | |
"EntityOwlDoll:false" | |
"EntityWitherSword:true" | |
"EntityThrownItem:false" | |
"StickYakitoriEntity:false" | |
"EntityTFLichBomb:true" | |
"WagashiKinakoEntity:false" | |
"EntityLightBullet:true" | |
"EntityZundaArrow:true" | |
"SimmeredSoyEntity:false" | |
"SimmeredBeansEntity:false" | |
"EntityAlumentum:true" | |
"EntityBox:false" | |
"EntityBoat:false" | |
"EntityRiceShiruko:false" | |
"ParfaitAnkoEntity:false" | |
"BlockBuildEntity:false" | |
"EntityJustGuardManager:true" | |
"EntityAcidProjectile:true" | |
"StickSquidEntity:false" | |
"DishYakkoEntity:false" | |
"MealFalafelSandEntity:false" | |
"EntityExtinguishingAgent:false" | |
"EntityStormSwords:true" | |
"ParfaitWatermelonEntity:false" | |
"PlatePotatoEntity:false" | |
"PlatePorkEntity:false" | |
"CakeCocotteEntity:false" | |
"EntityDreadedCharge:true" | |
"CurryButterChickenEntity:false" | |
"SaladWatermelonEntity:false" | |
"WagashiAbekawaEntity:false" | |
"ERC_EntityCoaster:false" | |
"EntityBoatCarbon:false" | |
"DishNachosEntity:false" | |
"BreadRoundCreamEntity:false" | |
"EntityMinecartChest:false" | |
"EntityFlareEdge:true" | |
"EntitySpiritItem:false" | |
"StickPorkEntity:false" | |
"IceCreamCocoaEntity:false" | |
"CakeButterEntity:false" | |
"EntityThrowingArrow:true" | |
"StewSquidEntity:false" | |
"EntityBigCushion:false" | |
"FriedFishcakeEntity:false" | |
"PlateGyozaEntity:false" | |
"CakeCoffeeEntity:false" | |
"EntityDynamite:true" | |
"StickMuttonEntity:false" | |
"CakeLemonEntity:false" | |
"PlateChickenEntity:false" | |
"DishTacoriceEntity:false" | |
"DishBiriyaniEntity:false" | |
"EntityDriveEx:true" | |
"SaladSalmonEntity:false" | |
"BreadTortillaEntity:false" | |
"EntityNoFireLightningBolt:false" | |
"EntityProjBlackSpit:true" | |
"EntityIronBullet:true" | |
"CutleryChopsticksEntity:false" | |
"EntityStickyDynamite:true" | |
"ParfaitBerryEntity:false" | |
"PlateGratinEntity:false" | |
"EntityProjectileFirecharge:true" | |
"EntitySummonedSword:true" | |
"CakeBerryEntity:false" | |
"FriedPorkEntity:false" | |
"DishChickenRiceEntity:false" | |
"EntityFallTofu:false" | |
"EntityXPOrb:false" | |
"EntityPoolMinecart:false" | |
"StewMushroomEntity:false" | |
"EntityTFCubeOfAnnihilation:true" | |
"SaladPotatoEntity:false" | |
"EntityGrapple:true" | |
"EntityTeaCupSilver:false" | |
"EntityBlisteringSwords:true" | |
"WagashiBotamochiEntity:false" | |
"CurryFishEntity:false" | |
"StewBorschtEntity:false" | |
"StewPumpukinEntity:false" | |
"EntityTFTwilightWandBolt:true" | |
"EntityTFChainBlock:true" | |
"EntityFireBarrier:false" | |
"PieMooncakeEntity:false" | |
"WagashiYoukanEntity:false" | |
"EntityMinecartMotor:false" | |
"SandwichSalmonEntity:false" | |
"FriedFalafelEntity:false" | |
"MealBreakfastBEntity:false" | |
"EntityFlowerTurret:false" | |
"EntityTFThrownWep:true" | |
"MealFriedPotatoEntity:false" | |
"EntityMagicLandmine:false" | |
"EntityTumbler:false" | |
"EntityCution:false" | |
"DishSalmonEntity:false" | |
"ClubSandwichSEntity:false" | |
"EntityBabylonWeapon:true" | |
"EntityBoatRubber:false" | |
"EntityEnderPearl:true" | |
"CookieCrowEntity:false" | |
"EntityFukumame:true" | |
"EntityEgg:true" | |
"EntityPowerPoint:false" | |
"QuichePotatoEntity:false" | |
"EntityManaBurst:true" | |
"FriedPrawnEntity:false" | |
"EntityGolemOrb:true" | |
"UdonSeaweedEntity:false" | |
"EntityJudgmentCutManager:true" | |
"EntityBottleTaint:true" | |
"EntityNuke:false" | |
"SaladLotusrootEntity:false" | |
"SimmeredSpinachEntity:false" | |
"EntityBigCushionBrown:false" | |
"StewSeaweedEntity:false" | |
"EntityMaximumBetManager:true" | |
"PastaCodEntity:false" | |
"EntityEvokerFangs:false" | |
"EntityFallingTaint:false" | |
"PastaRoeEntity:false" | |
"CakeOnionEntity:false" | |
"MealCroquettePumpkinEntity:false" | |
"StewTomatoEntity:false" | |
"QuicheSpinachEntity:false" | |
"SaladSandwichEntity:false" | |
"WagashiStrawberryEntity:false" | |
"StewEggEntity:false" | |
"EntityGatekeeperEssence:false" | |
"EntitySit:false" | |
"EntityMobSplash:true" | |
"DishBruschettaEntity:false" | |
"DishTamagoEntity:false" | |
"PieCustardEntity:false" | |
"EntityFloatingNumber:false" | |
"EntityMiningLaser:true" | |
"SimmeredPumpkinEntity:false" | |
"BreadGingermanEntity:false" | |
"CakeTowerEntity:false" | |
"EntityCorporeaSpark:false" | |
"PlateBeefEntity:false" | |
"StewLazijiEntity:false" | |
"WaterBottleEntity:false" | |
"EntityProjIceSpit:true" | |
"EntityHeavyRainSwords:true" | |
"EntityTippedArrow:true" | |
"BreadPancakeEntity:false" | |
"EntitySeat:false" | |
"EntityAreaEffectCloud:false" | |
"EntityODBPrimed:false" | |
"SauceRaisinEntity:false" | |
"WagashiKurumiEntity:false" | |
"EntityMagneticHover:false" | |
"EntityCrowBullet:true" | |
"CurryVegiEntity:false" | |
"EntityDynamiteSmall:false" | |
"ERC_EntityCoasterConnector:false" | |
"PieMeatEntity:false" | |
"DishMisoniEntity:false" | |
"EntityTFCharmEffect:false" | |
"EntitySpiralSwords:true" | |
"SaladWalnutEntity:false" | |
"BreadSquareEntity:false" | |
"EntityErgonomicChairWhite:false" | |
"YogurtPlainEntity:false" | |
"DishIkameshiEntity:false" | |
"EntityErgonomicChair:false" | |
"EntityIronBolt:true" | |
"WagashiKurimanjuEntity:false" | |
"BreadRoundEntity:false" | |
"EntityTFTomeBolt:true" | |
"EntityMobBullet:false" | |
"DrinkEntity:false" | |
"EntityShulkerBullet:true" | |
"EntityEldritchOrb:true" | |
"BreadToastGarlicEntity:false" | |
"PastaTomatoEntity:false" | |
"ConstructionBlockEntity:false" | |
"MealCroquettePotatoEntity:false" | |
"EntityFocusMine:true" | |
"TartCustardEntity:false" | |
"FriedFishEntity:false" | |
"SandwichEntity:false" | |
"TartAppleEntity:false" | |
"BreadWalnutEntity:false" | |
"EntityFallingStar:true" | |
"CurryVindalooEntity:false" | |
"IceCreamLemonEntity:false" | |
"EntityPSDLTracker:false" | |
"TartCrostataEntity:false" | |
"BreadAnkoEntity:false" | |
"MochiEntity:false" | |
"EntityMinecartTNT:false" | |
"EntityCaliburManager:true" | |
"EntityExpBottle:true" | |
"CakeAppleEntity:false" | |
"EntityRiceTyadukeRoe:false" | |
"EntityMinecartCommandBlock:false" | |
"EntityManaStorm:false" | |
"DishTomyumEntity:false" | |
"EntityFollowingItem:false" | |
"entitySUSHI:false" | |
"MealBreakfastJEntity:false" | |
"EntityThornChakram:true" | |
"StickMotuEntity:false" | |
"PlateMeatPaellaEntity:false" | |
"WagashiZundaEntity:false" | |
"EntityTFIceSnowball:true" | |
"SaladGreenEntity:false" | |
"UdonEggEntity:false" | |
"EntityPotion:true" | |
"TartChocolateEntity:false" | |
"EntityProjectileSnow:true" | |
"EntityProjRedSpit:true" | |
"CakeKuzuEntity:false" | |
"EntityProjectileEmerald:true" | |
"StickFishEntity:false" | |
"FallingStar:false" | |
"EntityEnderEye:false" | |
"BreadToastFrenchEntity:false" | |
"IceCreamCookieEntity:false" | |
"EntitySeekerArrow:true" | |
"IceCreamBerryEntity:false" | |
"MealFishAndChipsEntity:false" | |
"EntitySmallCushionB:false" | |
"EntitySmallCushionA:false" | |
"EntitySmallCushionC:false" | |
"EntityWitherSkull:true" | |
"CutlerySpoonEntity:false" | |
"CurrySpinachEntity:false" | |
"EntityMinecartFurnace:false" | |
"EntityExtinctionBullet:true" | |
"PieSugarEntity:false" | |
"ERC_EntityCoasterDoubleSeat:false" | |
"EntityPlayerMover:false" | |
"PizzaTeriyakiEntity:false" | |
"EntityVineBall:true" | |
"EntitySummonedSwordAirTrickMarker:true" | |
"EntityBladeStand:false" | |
"EntitySpearManager:true" | |
"CakeChocolateEntity:false" | |
"PlateFishEntity:false" | |
"EntityRiceTyadukeSalmon:false" | |
"CurryGreenEntity:false" | |
"PizzaRoeEntity:false" | |
"LiquorBottleEntity:false" | |
"EntityRiceBall:false" | |
"EntitySpark:false" | |
"BreadRaisinEntity:false" | |
"EntityMinecartEmpty:false" | |
"EntityCinderSpark:false" | |
"IceCreamKinakoEntity:false" | |
"CutleryForkEntity:false" | |
"EntityPhantomSwordEx:true" | |
"WagashiYatsuhashiEntity:false" | |
"CakeToffeeEntity:false" | |
"EntityMagicMissile:true" | |
"CakeYogurtEntity:false" | |
"EntityScooter:false" | |
"EntitySpectralArrow:true" | |
"EntityMinecartMobSpawner:false" | |
"PastaBeefEntity:false" | |
"EntityTeaCupWhite:false" | |
"EntityItem:false" | |
"EntityAnimation:false" | |
"StewMotsuEntity:false" | |
"EntityPainting:false" | |
"EntityFluxRift:false" | |
"EntityBackpack:false" | |
"PastaPrawnEntity:false" | |
"MealBreakfastJ2Entity:false" | |
"EntityRiceMushroom:false" | |
"CookieUnagiEntity:false" | |
"StewGarlicOilEntity:false" | |
"EntityModBoat:false" | |
"PieChocolateEntity:false" | |
> | |
B:FastLeavesDecay=false | |
B:MobSafeDrop=false | |
S:RankDownIgnoreDamageTypes < | |
> | |
B:SafeDrop=true | |
} | |
rustblade { | |
D:DirectDropChance=-1.0 | |
D:DropRate=0.20000000298023224 | |
D:IsBrokenRate=0.699999988079071 | |
D:NoSheathRate=0.8999999761581421 | |
D:SpawnRate=0.05000000074505806 | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment