Skip to content

Commit

Permalink
Merge pull request #38 from hextheslime/main
Browse files Browse the repository at this point in the history
questionable_ingredients.js
  • Loading branch information
slweeb authored Jun 15, 2024
2 parents 91ea111 + 08bed70 commit f16dd29
Show file tree
Hide file tree
Showing 2 changed files with 121 additions and 0 deletions.
56 changes: 56 additions & 0 deletions building_materials.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
addIngredient("concrete",{
type:"thick_liquid",
color:"#888888",
keywords:"concrete",
adj:"concrete"
});

addIngredient("hardened_concrete",{
type:"bouillon_cube",
color:"#444444",
keywords:"concrete",
adj:"hardened"
});

addIngredient("metal",{
type:"bouillon_cube",
color:"#BBBBBB",
keywords:"metal,iron",
adj:"metallic"
});

addIngredient("brick",{
type:"chocolate",
color:"#FF866E",
keywords:"brick",
adj:"bricky ",
meltInto: null
});

addIngredient("hex",{
type:"decor",
color:"#0088FF",
keywords:"hex,developer",
adj:"hexagonical ",
});

addIngredient("liquid_death",{
type:"salsa",
color:"#FF0000",
keywords:"death,poison",
adj:"deadly ",
});

addIngredient("gas_death",{
type:"smoke",
color:"#FF0000",
keywords:"death,poison",
adj:"deadly ",
});

addIngredient("cubical_death",{
type:"bouillon_cube",
color:"#FF0000",
keywords:"death,poison",
adj:"deadly ",
});
65 changes: 65 additions & 0 deletions questionable_ingredients.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
addIngredient("totally_not_cocaine",{
type:"spice",
color:"#DDDDDD",
keywords:"cocaine,drug,powder,sugar,illegal",
});
addIngredient("totally_not_weed",{
type:"wheat",
color:"#44CC00",
keywords:"weed,drug,grass,illegal",
});
addIngredient("totally_not_fentanyl",{
type:"candy",
color:"#5599CC",
keywords:"fentanyl,drug,pill,sugar,illegal",
});
addIngredient("totally_not_meth",{
type:"cress",
color:"#4488FF",
keywords:"meth,drug,crystal,illegal",
});
addIngredient("gunpowder_:3",{
type:"spice",
color:"#676666",
keywords:"gunpowder,bomb,explosive,illegal",
});
addIngredient("uhm..._milk",{
type:"oil",
color:"#EEEEEE",
keywords:"cum,milk,illegal,ejaculate,liquid",
});
addIngredient("tooth",{
type:"mutton",
color:"#EFEFEE",
keywords:"tooth,illegal",
});
addIngredient("poison",{
type:"oil",
color:"#33CC11",
keywords:"poison,illegal,liquid",
});
addIngredient("blood",{
type:"oil",
color:"#990000",
keywords:"blood,illegal,liquid",
});
addIngredient("infant",{
type:"r74n",
color:"#FFD5C4",
keywords:"child,illegal,doll,human",
});
addIngredient("criminal",{
type:"r74n",
color:"#FF6A00",
keywords:"child,illegal,doll,human",
});
addIngredient("medicine",{
type:"candy",
color:"#CC0000",
keywords:"drug,illegal,substance",
});
addIngredient("tennis_ball_(definitely_not_loaded_up_with_gunpowder)_",{
type:"cheeseball",
color:"#44FF44",
keywords:"illegal,ball,tennis,bomb",
});

0 comments on commit f16dd29

Please sign in to comment.