-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added do2.config.bc.cardsAlwaysAvailable, needs interface
- Loading branch information
1 parent
edf1be8
commit 8bcecc0
Showing
3 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
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
33 changes: 33 additions & 0 deletions
33
Brilliance Datapack/data/do2/functions/dungeon_setup/make_cards_always_available.mcfunction
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 1.. run setblock -624 -17 1998 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 2.. run setblock -624 -17 1999 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 3.. run setblock -624 -17 2000 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 4.. run setblock -624 -17 2001 minecraft:redstone_block | ||
# 2002 has no card | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 5.. run setblock -624 -17 2003 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 6.. run setblock -624 -17 2004 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 7.. run setblock -624 -17 2005 minecraft:redstone_block | ||
# 2006 has no card | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 8.. run setblock -624 -17 2007 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 9.. run setblock -624 -17 2008 minecraft:redstone_block | ||
# 2009 has no card | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 10.. run setblock -624 -17 2010 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 11.. run setblock -624 -17 2011 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 12.. run setblock -624 -17 2012 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 13.. run setblock -624 -17 2013 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 14.. run setblock -624 -17 2014 minecraft:redstone_block | ||
# swap from east side to west side | ||
# 2014 has no card | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 15.. run setblock -650 -17 2013 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 16.. run setblock -650 -17 2012 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 17.. run setblock -650 -17 2011 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 18.. run setblock -650 -17 2010 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 19.. run setblock -650 -17 2009 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 20.. run setblock -650 -17 2008 minecraft:redstone_block | ||
# 2007 has no card | ||
# 2006 has no card | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 21.. run setblock -650 -17 2005 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 22.. run setblock -650 -17 2004 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 23.. run setblock -650 -17 2003 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 24.. run setblock -650 -17 2002 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 25.. run setblock -650 -17 2001 minecraft:redstone_block | ||
execute if score $dungeon do2.config.bc.cardsAlwaysAvailable matches 26.. run setblock -650 -17 2000 minecraft:redstone_block |
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