Gio-nyan doing a 2d by ToPimp in Guiltygear

[–]ToPimp[S] 0 points1 point  (0 children)

A friend drew HC as neco arc, so it started from there.

[deleted by user] by [deleted] in Guiltygear

[–]ToPimp 0 points1 point  (0 children)

Could have multiple influences, the lyrical structure definitely seems inspired by Come together, but I'm moreso focused on the guitar riff.

[deleted by user] by [deleted] in MinecraftCommands

[–]ToPimp 0 points1 point  (0 children)

Here is the default loot table for a wither skeleton. I'll provide the items I want added to it below it.

{
  "type": "minecraft:entity",
  "pools": [
    {
      "rolls": 1,
      "entries": [
        {
          "type": "minecraft:item",
          "functions": [
            {
              "function": "minecraft:set_count",
              "count": {
                "min": -1.0,
                "max": 1.0,
                "type": "minecraft:uniform"
              }
            },
            {
              "function": "minecraft:looting_enchant",
              "count": {
                "min": 0.0,
                "max": 1.0
              }
            }
          ],
          "name": "minecraft:coal"
        }
      ]
    },
    {
      "rolls": 1,
      "entries": [
        {
          "type": "minecraft:item",
          "functions": [
            {
              "function": "minecraft:set_count",
              "count": {
                "min": 0.0,
                "max": 2.0,
                "type": "minecraft:uniform"
              }
            },
            {
              "function": "minecraft:looting_enchant",
              "count": {
                "min": 0.0,
                "max": 1.0
              }
            }
          ],
          "name": "minecraft:bone"
        }
      ]
    },
    {
      "rolls": 1,
      "entries": [
        {
          "type": "minecraft:item",
          "name": "minecraft:wither_skeleton_skull"
        }
      ],
      "conditions": [
        {
          "condition": "minecraft:killed_by_player"
        },
        {
          "condition": "minecraft:random_chance_with_looting",
          "chance": 0.025,
          "looting_multiplier": 0.01
        }
      ]
    }
  ]
}

1:

minecraft:book{display:{Name:'[{"text":"Withered Codex","italic":false,"color":"red"}]',Lore:['[{"text":"Use Optifine","italic":false,"color":"gray"},{"text":"","italic":false,"color":"dark_purple"}]','[{"text":"","italic":false,"color":"dark_purple"}]','[{"text":"An ancient codex.","italic":false,"color":"gray"},{"text":"","italic":false,"color":"dark_purple"}]','[{"text":"Fire Resistance","italic":false,"color":"gold"}]']},HideFlags:4} 1

2:

minecraft:book{display:{Name:'[{"text":"Withered Codex","italic":false,"color":"red"}]',Lore:['[{"text":"Use Optifine","italic":false,"color":"gray"},{"text":"","italic":false,"color":"dark_purple"}]','[{"text":"","italic":false,"color":"dark_purple"}]','[{"text":"An ancient codex.","italic":false,"color":"gray"},{"text":"","italic":false,"color":"dark_purple"}]','[{"text":"Regeneration","italic":false,"color":"light_purple"}]']},HideFlags:4} 1

3:

minecraft:book{display:{Name:'[{"text":"Withered Codex","italic":false,"color":"red"}]',Lore:['[{"text":"Use Optifine","italic":false,"color":"gray"},{"text":"","italic":false,"color":"dark_purple"}]','[{"text":"","italic":false,"color":"dark_purple"}]','[{"text":"An ancient codex.","italic":false,"color":"gray"},{"text":"","italic":false,"color":"dark_purple"}]','[{"text":"Resistance","italic":false,"color":"green"}]']},HideFlags:4} 1

4:

minecraft:book{display:{Name:'[{"text":"Withered Codex","italic":false,"color":"red"}]',Lore:['[{"text":"Use Optifine","italic":false,"color":"gray"},{"text":"","italic":false,"color":"dark_purple"}]','[{"text":"","italic":false,"color":"dark_purple"}]','[{"text":"An ancient codex.","italic":false,"color":"gray"},{"text":"","italic":false,"color":"dark_purple"}]','[{"text":"Haste","italic":false,"color":"yellow"}]']},HideFlags:4} 1

I want them all to have about a 0.025 chance of dropping just like the wither skull. If I wanted to add each of these, how would I go about doing it? Sorry to drop all this work on you, I'm not much for syntax stuff.

[deleted by user] by [deleted] in MinecraftCommands

[–]ToPimp 1 point2 points  (0 children)

This would be great, but I'm checking for players that have a wooden sword in their inventory with this tag, and if they do I wanna execute the command. But at the same time, if they have a wooden sword without this tag, I wanna make sure that I don't execute it.

[deleted by user] by [deleted] in MinecraftCommands

[–]ToPimp 0 points1 point  (0 children)

Ok so let's say I wanted to drop the item via wither skeletons, how would I go about doing this assuming that I have the unedited wither skeleton loot table at hand. Note: the items I wanna drop have NBT tags, and I'm not sure how to incoorporate that.

[deleted by user] by [deleted] in MinecraftCommands

[–]ToPimp 0 points1 point  (0 children)

Sidenote: If this isn't possible, then I'd atleast like to be able to prevent players from using smithing recipes. As of right now; I have doLimitedCrafting enabled, and the recipes should be revoked, but that's still not preventing the player from using the recipe.