This script applies a 10% discount to the base price of all listings for any marketplaces the script is run on:
var item = FILLZ.ITEM.v1; var discount = 0.10; var price = item.base_price; return price * (1 - discount);