Skip to content

Commit

Permalink
Rework Frog Merchant into better mining shop
Browse files Browse the repository at this point in the history
  • Loading branch information
LeDrascol committed Jul 1, 2019
1 parent 5acbd9d commit 0a687ae
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -1270,6 +1270,27 @@
+ Rarity increased from Common to Legendary for Broadcast Console
+ Price change from 190 PIXELS to 3000 PIXELS for Broadcast Console
+ Updated description of Broadcast Console to indicate it once functioned
+ Renamed Frog Merchant shop to Frogg Excavations
+ Updated shop description for Frog Merchant
+ Price change from 1000 PIXELS to 0 PIXELS for Frog Merchant
+ Buy rates increased from 100% to 250% for Frog Merchant
+ Sell rates increased from 20% to 80% for Frog Merchant
+ Increased rarity rank from Common to Legendary for Frog Merchant
+ Removed existing shop inventory for Frog Merchant
+ Added Frog Merchant item Flare
+ Added Frog Merchant item Climbing Rope
+ Added Frog Merchant item Copper Lantern
+ Added Frog Merchant item Copper Pickaxe
+ Added Frog Merchant item Gold Pickaxe
+ Added Frog Merchant item Diamond Pickaxe
+ Added Frog Merchant item Siler Pickaxe
+ Added Frog Merchant item Platinum Pickaxe
+ Added Frog Merchant item Copper Drill
+ Added Frog Merchant item Gold Drill
+ Added Frog Merchant item Diamond Drill
+ Added Frog Merchant item Silver Drill
+ Added Frog Merchant item Copper Drill
+ Added Frog Merchant item Platinum Drill

### Avali
+ Price change from 12500 PIXELS to 11000 PIXELS for Avali Hoverbike Controller
Expand Down
68 changes: 68 additions & 0 deletions objects/generic/frogmerchant/frogmerchant.object.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
[
{
"op": "replace",
"path": "/rarity",
"value": "Legendary"
},
{
"op": "remove",
"path": "/interactData/items"
},
{
"op": "add",
"path": "/interactData/items",
"value": [
{ "item" : "bomb" },
{ "item" : "flare" },
{ "item" : "climbingrope" },
{ "item" : "copperlantern" },
{ "item" : "copperpickaxe" },
{ "item" : "goldpickaxe" },
{ "item" : "diamondpickaxe" },
{ "item" : "silverpickaxe" },
{ "item" : "platinumpickaxe" },
{ "item" : "copperdrill" },
{ "item" : "golddrill" },
{ "item" : "diamonddrill" },
{ "item" : "silverdrill" },
{ "item" : "platinumdrill" }
]
},
{
"op": "add",
"path": "/interactData/paneLayoutOverride/windowtitle/icon",
"value": {
"file": "/objects/generic/frogmerchant/frogmerchanticon.png"
}
},
{
"op": "replace",
"path": "/interactData/buyFactor",
"value": 2.5
},
{
"op": "replace",
"path": "/interactData/sellFactor",
"value": 0.8
},
{
"op": "replace",
"path": "/price",
"value": 0
},
{
"op": "replace",
"path": "/unbreakable",
"value": false
},
{
"op": "replace",
"path": "/interactData/paneLayoutOverride/windowtitle/title",
"value": " Frögg Excavations"
},
{
"op": "replace",
"path": "/interactData/paneLayoutOverride/windowtitle/subtitle",
"value": " Mining tools on a budget"
}
]

0 comments on commit 0a687ae

Please sign in to comment.