# Deliberate boundaries and feature intersections supplement the ordinary seed corpus.
TARGETS = [
    ('small_cottage', {
        'topology': 'single',
        'width': 15,
        'depth': 17,
        'floors': 1,
        'ridge': 'z',
        'profile': 'chalet',
        'wing_floors': 1,
        'tower': 'none',
        'conservatory': False,
        'porch': 'full',
        'balcony': False,
        'dormers': 0,
        'terrain': 'garden'
    }),
    ('narrow_cross_dormers', {
        'topology': 'ell',
        'width': 15,
        'depth': 17,
        'floors': 1,
        'ridge': 'x',
        'profile': 'chalet',
        'wing_size': 9,
        'wing_floors': 1,
        'tower': 'stone',
        'tower_width': 9,
        'conservatory': True,
        'porch': 'entry',
        'balcony': False,
        'dormers': 2,
        'terrain': 'terrace'
    }),
    ('cliff_courtyard', {
        'topology': 'courtyard',
        'width': 19,
        'depth': 21,
        'floors': 3,
        'ridge': 'x',
        'profile': 'steep',
        'wing_size': 13,
        'wing_floors': 2,
        'tower': 'stone',
        'tower_width': 11,
        'tower_extra': 2,
        'conservatory': True,
        'porch': 'full',
        'balcony': True,
        'dormers': 2,
        'terrain': 'cliff',
        'layout': 'suites'
    }),
    ('long_inn', {
        'topology': 'staggered',
        'width': 19,
        'depth': 21,
        'floors': 3,
        'ridge': 'z',
        'profile': 'bell',
        'wing_size': 13,
        'wing_floors': 2,
        'tower': 'timber',
        'tower_width': 11,
        'tower_extra': 2,
        'conservatory': True,
        'porch': 'full',
        'balcony': True,
        'dormers': 2,
        'terrain': 'cliff'
    }),
    ('glass_wrap', {
        'topology': 'ell',
        'width': 15,
        'depth': 17,
        'floors': 2,
        'ridge': 'x',
        'profile': 'chalet',
        'wing_floors': 1,
        'tower': 'none',
        'conservatory': True,
        'porch': 'wrap',
        'balcony': True,
        'dormers': 2,
        'terrain': 'garden',
        'entrance': 'left'
    }),
    ('short_watchtower', {
        'topology': 'single',
        'width': 15,
        'depth': 17,
        'floors': 1,
        'ridge': 'z',
        'profile': 'chalet',
        'wing_floors': 1,
        'tower': 'stone',
        'tower_width': 11,
        'tower_extra': 2,
        'conservatory': False,
        'porch': 'entry',
        'balcony': False,
        'dormers': 0,
        'terrain': 'garden'
    }),
    ('cross_twin', {
        'topology': 'twin',
        'width': 17,
        'depth': 19,
        'floors': 2,
        'ridge': 'x',
        'profile': 'bell',
        'wing_size': 9,
        'wing_floors': 2,
        'wing_ridge': 'cross',
        'placement': 'front',
        'tower': 'none',
        'conservatory': False,
        'porch': 'entry',
        'balcony': False,
        'dormers': 1,
        'layout': 'open'
    }),
    ('rear_gallery', {
        'topology': 'ell',
        'width': 19,
        'depth': 21,
        'floors': 3,
        'ridge': 'z',
        'profile': 'steep',
        'wing_size': 9,
        'wing_floors': 2,
        'placement': 'rear',
        'tower': 'stone',
        'tower_extra': 1,
        'conservatory': False,
        'porch': 'wrap',
        'balcony': True,
        'dormers': 2,
        'layout': 'suites'
    }),
]
