Use this bar to show information about your cookie policy.
Roll over image to zoom inClick on image to zoom
/
Description
Release date: 15th March 2024
A great value! It contains 2 booster packs, a DON! Card featuring 1 of 2 new designs, and the packaging doubles as a card case.
Contents
Booster Pack [OP-06] x2
DON! Card x1 (2 types)
Roll over image to zoom inClick on image to zoom
/
You may also like
Recently viewed
Opens in a new window.
// The function toggles more (hidden) text when the user clicks on "Read more". The IF ELSE statement ensures that the text 'read more' and 'read less' changes interchangeably when clicked on.
$('.moreless-button').click(function() {
$('.moretext').slideToggle();
if ($('.moreless-button').text() == "Read more") {
$(this).text("Read less")
} else {
$(this).text("Read more")
}
});