Advertisement
Tetrikitty

format for finesmithed rings

Feb 15th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 5.36 KB | None | 0 0
  1. // page 4, interlocked hearts engagement ring
  2.  
  3.   set_open_page( 4 );
  4.   add_read_mess( "More complicated than the previous ring, this engagement "
  5.     "ring is sculpted with interlocking hearts and has a setting for one "
  6.     "medium gem.\n", 0, "morporkian", 1 );
  7.   add_read_mess( "\nA difficult pattern for an engagement ring with a "
  8.     "setting for one medium-sized gem and using a tiny metal bar.\n",
  9.     "inscribed crosshatching", "general", 1 );
  10.  
  11.   set_platonic( 4, PLATONICS + "ring" );
  12.   set_gem_map( 4, ([ "medium" : 1 ]) );
  13.   add_pattern( 4, "$material$ heart engagement ring", ({
  14.     "A band of $material$ sculpted into a ring of interlocking hearts.  "
  15.       "It features a single $gem_medium$.\n",
  16.     "A band of $material$ has been sculpted into a ring of delicate love "
  17.       "hearts.  $a_cap_gem_medium$ has been set into it as a promise of "
  18.       "marriage.\n",
  19.     "A slender band of $material$ has been sculpted with a delicate "
  20.       "design of interlaced hearts and adorned with $a_gem_medium$ to "
  21.       "symbolise a promise of marriage.\n",
  22.     "Symbolising the promise of everlasting love, this slender band "
  23.       "of $material$ has been painstakingly sculpted with a delicate "
  24.       "pattern of interlaced hearts, and expertly crafted with "
  25.       "$a_gem_medium$.\n",
  26.     "A slightly uneven circle of $material$ has been sculpted with "
  27.       "crude hearts. $a_cap_gem_medium$ decorates the centre of the "
  28.       "ring.\n",
  29.     "This band of $material$, featuring $a_gem_medium$, is roughly "
  30.       "crafted.  It bears a design of what could charitably be called "
  31.       "two hearts.\n",
  32.     "This piece of $material$ is far from circular, but at least both "
  33.       "ends meet.  It features $a_gem_medium$ and bears some scratches "
  34.       "which might have been at attempt at sculpting.\n",
  35.     "This uneven band of $material$ has a hole in the middle and is "
  36.       "presumably intended to be a ring, or a very small metal doughnut.  "
  37.       "It has $a_gem_medium$ stuck somewhere in the approximate centre, "
  38.       "but goodness knows why.\n"
  39.   }), "difficult", 1, "goldsmithing",
  40.   ({ "simple $material$ heart engagement ring",
  41.      "delicate $material$ heart engagement ring",
  42.      "slender $material$ heart engagement ring",
  43.      "stunning $material$ heart engagement ring",
  44.      
  45.      "uneven $material$ heart engagement ring",
  46.      "rough $material$ heart engagement ring",
  47.      "crude $material$ heart engagement ring",
  48.      "lumpy $material$ heart engagement ring" }) );
  49.  
  50.  
  51. // page 6, cobra ring
  52.  
  53.   set_open_page( 6 );
  54.   add_read_mess( "A snake's body is ideally suited to form the base of a "
  55.     "ring, as the pattern for this cobra ring shows.  The ring has the "
  56.     "cobra in its classic strike mode, with its hood flared and has two "
  57.     "tiny gem settings for its eyes.  Not a pattern for the beginner, but "
  58.     "well worth the effort.\n",
  59.     0, "morporkian", 1 );
  60.   add_read_mess( "A difficult pattern of a cobra ring with settings for two "
  61.     "tiny gems and using a tiny metal bar.\n",
  62.     "inscribed crosshatching", "general", 1 );
  63.  
  64.   set_platonic( 6, PLATONICS + "ring" );
  65.   set_gem_map( 6, ([ "tiny" : 2 ]) );
  66.   add_pattern( 6, "$material$ cobra ring", ({
  67.     "A broad-headed cobra fashioned from $material$ coils around in a circle "
  68.       "to form this ring.  The snake's large head is raised as if poised to "
  69.       "strike as it glares through $gem_tiny_all$ which depict the eyes.\n",
  70.     "A cobra crafted from $material$ coils around to form this ring.  The "
  71.       "snake's hooded head is raised as if poised to strike.  Eyes take the "
  72.       "form of $gem_tiny_all$.\n",
  73.     "A cobra, finely crafted from $material$, coils around to form this "
  74.       "ring.  The snake's head is raised, hood flared threateningly, as if "
  75.       "poised to strike.  $cap_gem_tiny_all$ act as the snake's eyes.\n",
  76.     "A cobra, expertly crafted from $material$, coils sinuously around to "
  77.       "form this ring.  The snake's deadly head is raised, hood flared "
  78.       "threateningly, as if poised to strike at any moment.  It glares "
  79.       "through $gem_tiny_all$ which form its coldly calculating eyes.\n",
  80.     "A simplistic cobra with a flared hood crafted from $material$ coils "
  81.       "around to form this ring.  Its eyes take the form of $gem_tiny_all$.\n",
  82.     "A fat-headed cobra wrought from $material$ coils around to form this "
  83.       "ring.  The snake's head is raised as if poised to strike and its eyes "
  84.       "have been depicted with $gem_tiny_all$.\n",
  85.     "A fat-headed snake inexpertly created from $material$ wraps around to "
  86.       "form a ring.  The snake's lumpy head is held upright and its eyes are "
  87.       "in the form of $gem_tiny_all$.\n",
  88.     "A ropey strand, lumpy at one end and inexpertly wrought from "
  89.       "$material$ wraps around to form this ring, which resembles a snake.  "
  90.       "$cap_gem_tiny_all$ have been embedded in it in the general location "
  91.       "of the snake's eyes, if the lumpy end were its head.\n" }),
  92.     "difficult", 1, "goldsmithing",
  93.     ({ "simple $material$ cobra ring",
  94.        "well crafted $material$ cobra ring",
  95.        "finely crafted $material$ cobra ring",
  96.        "striking $material$ cobra ring",
  97.        
  98.        "basic $material$ cobra ring",
  99.        "fat-headed $material$ cobra ring",
  100.        "lumpy $material$ cobra ring",
  101.        "deformed $material$ snake ring" }) );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement