Advertisement
varden

Untitled

Dec 22nd, 2014
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 2.68 KB | None | 0 0
  1. INSERT INTO SMALLWORLD.AREATYPES (ID, "NAME")
  2.     VALUES (1, 'Farmland');
  3. INSERT INTO SMALLWORLD.AREATYPES (ID, "NAME")
  4.     VALUES (2, 'Forest');
  5. INSERT INTO SMALLWORLD.AREATYPES (ID, "NAME")
  6.     VALUES (3, 'Hill');
  7. INSERT INTO SMALLWORLD.AREATYPES (ID, "NAME")
  8.     VALUES (4, 'Swamp');
  9. INSERT INTO SMALLWORLD.AREATYPES (ID, "NAME")
  10.     VALUES (5, 'Mountain');
  11.  
  12. INSERT INTO SMALLWORLD.RACES (ID, "NAME", DESCRIPTION, DEFAULTTOKENCOUNT)
  13.     VALUES (1, 'Forgotten Races', 'Remnants of an old civilization.', 0);
  14. INSERT INTO SMALLWORLD.RACES (ID, "NAME", DESCRIPTION, DEFAULTTOKENCOUNT)
  15.     VALUES (2, 'Dwarves', 'At the end of each turn, you receive +2 gold.', 10);
  16. INSERT INTO SMALLWORLD.RACES (ID, "NAME", DESCRIPTION, DEFAULTTOKENCOUNT)
  17.     VALUES (3, 'Elves', 'When conquered, you suffer no loss; withdraw all your tokens from the region.', 10);
  18. INSERT INTO SMALLWORLD.RACES (ID, "NAME", DESCRIPTION, DEFAULTTOKENCOUNT)
  19.     VALUES (4, 'Ghouls', 'Your Ghouls all stay on the map, when going into decline.', 9);
  20. INSERT INTO SMALLWORLD.RACES (ID, "NAME", DESCRIPTION, DEFAULTTOKENCOUNT)
  21.     VALUES (5, 'Giants', 'Conquer any Region adjacent to a Mountain Region you occupy at 1 less Giant token than usual. A minimum of 1 Giant token is still required.', 10);
  22. INSERT INTO SMALLWORLD.RACES (ID, "NAME", DESCRIPTION, DEFAULTTOKENCOUNT)
  23.     VALUES (6, 'Humans', 'Collect 1 bonus gold for each Farmland Region you occupy at turn''s end.', 9);
  24. INSERT INTO SMALLWORLD.RACES (ID, "NAME", DESCRIPTION, DEFAULTTOKENCOUNT)
  25.     VALUES (7, 'Orcs', 'Collect 1 bonus gold for each non-empty Region you conquered this turn.', 9);
  26. INSERT INTO SMALLWORLD.RACES (ID, "NAME", DESCRIPTION, DEFAULTTOKENCOUNT)
  27.     VALUES (8, 'Ratmen', 'No Race benefit other than their sheer number!', 12);
  28. INSERT INTO SMALLWORLD.RACES (ID, "NAME", DESCRIPTION, DEFAULTTOKENCOUNT)
  29.     VALUES (9, 'Mudmen', 'At the end of your turn, receive 1 additional Mudman in each Swamp Region.', 10);
  30. INSERT INTO SMALLWORLD.RACES (ID, "NAME", DESCRIPTION, DEFAULTTOKENCOUNT)
  31.     VALUES (10, 'Drows', 'If all of the areas controlled by your Drows are adjacent at the end of your turn, you receive +3 gold.', 9);
  32. INSERT INTO SMALLWORLD.RACES (ID, "NAME", DESCRIPTION, DEFAULTTOKENCOUNT)
  33.     VALUES (11, 'Centaurs', 'Conquer any Farmland or Hills Region at 1 less Centaur token than usual. A minimum of 1 Centaur token is still required.', 10);
  34. INSERT INTO SMALLWORLD.RACES (ID, "NAME", DESCRIPTION, DEFAULTTOKENCOUNT)
  35.     VALUES (12, 'Harpies', 'You may conquer any Region of the map, not just an adjacent one.', 10);
  36. INSERT INTO SMALLWORLD.RACES (ID, "NAME", DESCRIPTION, DEFAULTTOKENCOUNT)
  37.     VALUES (13, 'Halflings', 'Collect 1 bonus gold for each Hills Region you occupy at turn''s end.', 10);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement