[
new DiscountItems({
include: {
collection_includes: "promo_30-off"
},regular_priced_only: true,
discount: new PercentageDiscount(30),message: "NOW 30% OFF!",
display_messaging: true,
calculate_price: true,
stack: false,
type: "30% Off",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),
new DiscountItems({
include: {
collection_includes: "promo_60-off"
},regular_priced_only: true,
discount: new PercentageDiscount(60),message: "ONLINE ONLY - NOW 60% OFF!",
display_messaging: true,
calculate_price: true,
stack: false,
type: "60% OFF",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),
new DiscountItems({
include: {
collection_includes: "promo_70-off"
},regular_priced_only: true,
discount: new PercentageDiscount(70),message: "ONLINE ONLY - NOW 70% OFF!",
display_messaging: true,
calculate_price: true,
stack: false,
type: "70% Off",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),
new DiscountItems({
include: {
collection_includes: "blankets"
},regular_priced_only: true,
discount: new PriceDiscount(7.50),message: "NOW $7.50!",
display_messaging: true,
calculate_price: true,
stack: false,
type: "$7.50 BLANKET",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),]