diff --git a/src/components/Board.tsx b/src/components/Board.tsx index fe24364..4cabfd3 100644 --- a/src/components/Board.tsx +++ b/src/components/Board.tsx @@ -179,23 +179,30 @@ function Soldier({ colour }: { colour: string }) { } /** - * A fleet: a hull, a mast and a sail. + * A fleet: a warship, which in 1901 means a pre-dreadnought. * - * The sail is the tell. A hull on its own is a wedge and a wedge is whatever - * you already thought it was; a triangle above a curve is a boat before - * anybody has decided to look. + * The first pass drew a sailing boat and it was wrong by fifty years -- these + * are the fleets of the naval race, coal-fired and armoured. The tell is not + * the hull, which is a wedge like any other; it is the pair of raked funnels + * over a hull that is long and low. A mast and a turret finish it, and at map + * scale the funnels are what a player actually sees. */ function Ship({ colour }: { colour: string }) { return ( - - + {/* Funnels first, so the hull's outline cuts across their feet. */} + + + + + {/* The forward turret: a warship points at things. */} + - + ) }