-- Seed Hammerfall test world (50x50) and default news
INSERT IGNORE INTO zones (id, name, width, height, zone_type, safe_reentry_x, safe_reentry_y)
VALUES ('hammerfall_world', 'Hammerfall Surrounds', 50, 50, 'world', 25, 25);

INSERT IGNORE INTO zones (id, name, width, height, zone_type, safe_reentry_x, safe_reentry_y)
VALUES ('hammerfall', 'Hammerfall', 20, 20, 'town', 10, 10);

INSERT IGNORE INTO news (title, body, is_published, published_at)
VALUES (
    'Welcome to the Realm',
    'Welcome to Realm of Forgotten Souls — a massive mobile multiplayer online role-playing mayhem. Explore the world, fight thousands of monsters, and level up to become number one!',
    1,
    NOW()
);
