Skip to content

Commit

Permalink
auto: Generated
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanV2 committed Apr 27, 2023
1 parent cce015a commit 000f0cc
Show file tree
Hide file tree
Showing 14 changed files with 4,224 additions and 13 deletions.
9 changes: 7 additions & 2 deletions src/Lib/Edu/BehaviorPack/blocks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ export const Blocks: Block[] =
},
{
"id": "minecraft:chemistry_table",
"properties": []
"properties": [
"chemistry_table_type",
"direction"
]
},
{
"id": "minecraft:element_0",
Expand Down Expand Up @@ -499,6 +502,8 @@ export const Blocks: Block[] =
},
{
"id": "minecraft:underwater_torch",
"properties": []
"properties": [
"torch_facing_direction"
]
}
]
Expand Down
9 changes: 9 additions & 0 deletions src/Lib/Edu/ResourcePack/textures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ export const Textures: string[] =
"textures/ui/edu_borderless_button_pressed",
"textures/ui/edu_green_tile",
"textures/ui/eduicon",
"textures/ui/feedback",
"textures/ui/feedback_hover",
"textures/ui/hamburger_icon_default",
"textures/ui/hamburger_icon_hover",
"textures/ui/home_default",
Expand Down Expand Up @@ -53,6 +55,13 @@ export const Textures: string[] =
"textures/ui/portfolio_convertpicture_default",
"textures/ui/portfolio_convertpicture_hover",
"textures/ui/portfolio_convertpicture_pressed",
"textures/ui/portfolio_pageleft_default",
"textures/ui/portfolio_pageleft_hover",
"textures/ui/portfolio_pageleft_pressed",
"textures/ui/portfolio_pageright_default",
"textures/ui/portfolio_pageright_hover",
"textures/ui/portfolio_pageright_pressed",
"textures/ui/profile_bg",
"textures/ui/refresh_flat",
"textures/ui/refresh_flat_hover",
"textures/ui/restore_arrow_default",
Expand Down
6 changes: 6 additions & 0 deletions src/Lib/General/entities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ export const EntityData: GeneralEntity =
"lightweight",
"llama",
"magmacube",
"mason",
"minecart",
"mob",
"monster",
Expand Down Expand Up @@ -252,6 +253,7 @@ export const EntityData: GeneralEntity =
"minecraft:defend_wandering_trader",
"minecraft:donkey_saddled",
"minecraft:donkey_unsaddled",
"minecraft:dried_out",
"minecraft:emerged",
"minecraft:end_roar",
"minecraft:entered_bubble_column_down",
Expand Down Expand Up @@ -299,6 +301,8 @@ export const EntityData: GeneralEntity =
"minecraft:melee_mode",
"minecraft:mule_saddled",
"minecraft:mule_unsaddled",
"minecraft:navigation_off_land",
"minecraft:navigation_on_land",
"minecraft:on_anger",
"minecraft:on_calm",
"minecraft:on_chest",
Expand Down Expand Up @@ -371,6 +375,7 @@ export const EntityData: GeneralEntity =
"minecraft:start_celebrating",
"minecraft:start_death",
"minecraft:start_despawn",
"minecraft:start_dryingout",
"minecraft:start_exploding",
"minecraft:start_exploding_forced",
"minecraft:start_fly",
Expand All @@ -382,6 +387,7 @@ export const EntityData: GeneralEntity =
"minecraft:start_transforming",
"minecraft:stop_aggro",
"minecraft:stop_celebrating",
"minecraft:stop_dryingout",
"minecraft:stop_exploding",
"minecraft:stop_johnny",
"minecraft:stop_transforming",
Expand Down
2 changes: 1 addition & 1 deletion src/Lib/General/format.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BlockState } from "../Types/BehaviorPack/Block";
import { BlockState } from "../Types/BehaviorPack/BlockState";

/**The summarized data set for blocks in minecraft*/
export interface GeneralBlock {
Expand Down
2 changes: 1 addition & 1 deletion src/Lib/Types/BehaviorPack/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ export * from "./BlockState";
export * from "./Entity";
export * from "./Item";
export * from "./LootTable";
export * from "./Trading";
export * from "./Trading";

0 comments on commit 000f0cc

Please sign in to comment.