Template:MoveCard
Template page
More actions
| Startup | Hit Level | Properties | On Block | On Hit | On Counter |
|---|---|---|---|---|---|
| — | — | — | — | — | — |
No description provided.
<script>
document.addEventListener('DOMContentLoaded', function () {
document.querySelectorAll('.hover-gif').forEach(function (img) {
img.addEventListener('mouseover', function () {
const src = img.src.split('?')[0];
img.src = src + '?1';
});
});
});
</script>