[
new DiscountItems({
include: {
collection_includes: "promo_50-off"
},regular_priced_only: true,
discount: new PercentageDiscount(50),message: "NOW 50% OFF!",
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(60),message: "ONLINE ONLY - 60% OFF!",
display_messaging: true,
calculate_price: true,
stack: false,
type: "60% OFF",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),
new DiscountItems({
include: {
collection_includes: "promo_75-off"
},regular_priced_only: true,
discount: new PercentageDiscount(75),message: "NOW 75% OFF!",
display_messaging: true,
calculate_price: true,
stack: false,
type: "75% OFF BEANIES \u0026 BOXERS",
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: "promo_80-off"
},regular_priced_only: true,
discount: new PercentageDiscount(80),message: "NOW 80% OFF!",
display_messaging: true,
calculate_price: true,
stack: false,
type: "80% Off",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),]