Skip to content

Commit

Permalink
Add some ex5 stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
sharpobject committed Sep 5, 2017
1 parent 5ef19e1 commit d6d2a2f
Show file tree
Hide file tree
Showing 10 changed files with 640,615 additions and 277,937 deletions.
81 changes: 81 additions & 0 deletions dungeons.json
Original file line number Diff line number Diff line change
Expand Up @@ -1445,6 +1445,38 @@
[
120036
]
],
[
[
110308
],
[
110309
],
[
110310
],
[
110311
],
[
110312
],
[
110313
],
[
110314
],
[
110315
],
[
110316
],
[
120037
]
]
],
"rewards": [
Expand Down Expand Up @@ -3208,6 +3240,55 @@
},
"21": 0
}
},
{
"0": {
"0": {
"cards": {
"210054": 1
},
"ore": 2
}
},
"7": {
"0": {
"cards": {
"210050": 12,
"210051": 12,
"210052": 12,
"210056": 45
}
},
"1": {
"cards": {
"210050": 8,
"210051": 8,
"210052": 8,
"210056": 40
}
},
"10": {
"cards": {
"100251": 1
}
},
"100": {
"cards": {
"210049": 20,
"210050": 20,
"210051": 20,
"210052": 20
}
},
"11": {
"cards": {
"210050": 12,
"210051": 12,
"210052": 12,
"210056": 45
}
}
}
}
]
}
2 changes: 1 addition & 1 deletion episodes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ return {
"EP14",
"EP15",
"EP16",
--"EX5",
"EX5",
--"EP17",
--"UE4",
--"EP18",
Expand Down
1 change: 1 addition & 0 deletions gen_craftable_cards.lua
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ local dungeon_mats = {
210047, -- Dimensional Fragment (ep14)
210048, -- Kana's Fragment (ep15)
210054, -- Mystery Flower (ep16)
210056, -- whatever (ex5)
}
local materials = {s1_fight, s2_fight, s3_fight, ore, dungeon_mats}
local reachable_cards = {}
Expand Down
25 changes: 23 additions & 2 deletions gen_dungeons.lua
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,19 @@ npcs[36] = {
[7]={120036},
}

npcs[37] = {
[1]={110308},
[2]={110309},
[3]={110310},
[4]={110311},
[5]={110312},
[6]={110313},
[7]={110314},
[8]={110315},
[9]={110316},
[10]={120037},
}

rewards = {}
-- format is rewards[dungeon#][floor#][clear#]["typeofreward"]
-- a floor# or clear# of 0 is the default
Expand Down Expand Up @@ -843,8 +856,16 @@ rewards[36] = {
[21]=0,
[100]={cards={[210049]=20,[210050]=20,[210051]=20,[210052]=20}}}
}


rewards[37] = {
[0]={[0]={ore=2, cards={[210054]=1}}},
[7]={[0]={cards={[210056]=45,[210050]=12,[210051]=12,[210052]=12}},
[1]={cards={[210056]=40,[210050]=8,[210051]=8,[210052]=8}},
[10]={cards={[100251]=1}},
[11]={cards={[210056]=45,[210050]=12,[210051]=12,[210052]=12}},
-- NOT SURE ACTUALLY
-- BOT ONLY DID LIKE 20 CLEARS LOL????
[100]={cards={[210049]=20,[210050]=20,[210051]=20,[210052]=20}}}
}

dungeons={npcs=npcs,rewards=rewards}
print(json.encode(dungeons))
Loading

0 comments on commit d6d2a2f

Please sign in to comment.