[
new DiscountItems({
include: {
collection_includes: "promo_blankets"
},regular_priced_only: true,
discount: new PriceDiscount(29.99),message: "BON PRIX!",
display_messaging: true,
calculate_price: true,
stack: false,
type: "$29.99 BLANKET",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),
new DiscountItems({
include: {
collection_includes: "promo_60-off"
},regular_priced_only: true,
discount: new PercentageDiscount(60),message: "EN LIGNE SEULEMENT - 60% DE RABAIS!",
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: "EN LIGNE SEULEMENT - 70% DE RABAIS!",
display_messaging: true,
calculate_price: true,
stack: false,
type: "70% Off",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),
new DiscountItems({
include: {
collection_includes: "promo_75-off"
},regular_priced_only: true,
discount: new PercentageDiscount(75),message: "MAINTENANT À 75% DE RABAIS!",
display_messaging: true,
calculate_price: true,
stack: false,
type: "75% Off",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),
new DiscountItems({
include: {
collection_includes: "promo_30-off"
},regular_priced_only: true,
discount: new PercentageDiscount(30),message: "MAINTENANT À 30% DE RABAIS!",
display_messaging: true,
calculate_price: true,
stack: false,
type: "30% Off",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),]