//=============================================================================
// MrB_Shop.js
//=============================================================================
/*:
* @plugindesc Add and remove items from a shopscene
* @author MrB
* @help Yes I need help.
*
* A lot of it.
*/
(function() {
function CallShop(){
//Add item unlock
if ($gameSwitches.value(1)){
var WoodenRing = [0,4,0,0];
} else {
var WoodenRing = "Not Unlocked";
}
var shopItems = [
[0,1,0,0],
[0,2,0,0],
[0,3,0,0],
WoodenRing
];
SceneManager.push(Scene_Shop);
SceneManager.prepareNextScene(shopItems, false);
}
})();