[
new DiscountItems({
include: {
collection_includes: "promo_20-off"
},regular_priced_only: true,
discount: new PercentageDiscount(20),message: "NOW 20% OFF!",
display_messaging: true,
calculate_price: true,
stack: false,
type: "20% OFF",
colors: {
background: "#ffffff",
text: "#000000"
},
}),
new DiscountItems({
include: {
collection_includes: "promo_sp-50"
},regular_priced_only: true,
discount: new PercentageDiscount(50),message: "50% OFF — ONLINE ONLY!",
display_messaging: true,
calculate_price: true,
stack: false,
type: "50% OFF",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),
new DiscountItems({
include: {
collection_includes: "promo_60-off"
},regular_priced_only: true,
discount: new PercentageDiscount(70),message: "70% OFF — ONLINE ONLY!",
display_messaging: true,
calculate_price: true,
stack: false,
type: "70% OFF HARDGOODS",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),
new DiscountItems({
include: {
collection_includes: "promo_70-off"
},regular_priced_only: true,
discount: new PercentageDiscount(70),message: "CLEARANCE - 70% OFF!",
display_messaging: true,
calculate_price: true,
stack: false,
type: "70% OFF",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),
new DiscountItems({
include: {
collection_includes: "promo_80-off"
},regular_priced_only: true,
discount: new PercentageDiscount(80),message: "CLEARANCE - 80% OFF",
display_messaging: true,
calculate_price: true,
stack: false,
type: "80% OFF",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),
new DiscountItems({
include: {
collection_includes: "promo_markdown_-5"
},regular_priced_only: true,
discount: new PriceDiscount(4.99),message: "CLEARANCE - $4.99!",
display_messaging: true,
calculate_price: true,
stack: false,
type: "MARKDOWN $5",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),new QuantityTier({
include: {
collection_includes: "promo_2-for-6"
},regular_priced_only: true,
tiers: [{
buy: 2,price: 6,message: "",
},],message: "CLEARANCE – 2 FOR $6",
display_messaging: true,
calculate_price: false,
stack: false,
type: "2 FOR $6",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),]