You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
457 B
SQL
10 lines
457 B
SQL
-- Migration 000012: Increase town radii and vary by settlement size.
|
|
|
|
UPDATE towns SET radius = 18 WHERE name = 'Willowdale';
|
|
UPDATE towns SET radius = 14 WHERE name = 'Thornwatch';
|
|
UPDATE towns SET radius = 16 WHERE name = 'Ashengard';
|
|
UPDATE towns SET radius = 14 WHERE name = 'Redcliff';
|
|
UPDATE towns SET radius = 12 WHERE name = 'Boghollow';
|
|
UPDATE towns SET radius = 16 WHERE name = 'Cinderkeep';
|
|
UPDATE towns SET radius = 18 WHERE name = 'Starfall';
|