Skip to content

Commit b8fc102

Browse files
committed
[test] Add character descriptions to example app
1 parent 77d1b9f commit b8fc102

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

example/src/data/items.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,35 +5,49 @@ export const items: Item[] = [
55
id: "homelander",
66
title: "Homelander",
77
image: require("../../assets/homelander.png"),
8+
description:
9+
"The Homelander (John) is a fictional supervillain in the comic book series The Boys, created by Garth Ennis and Darick Robertson. The leader of a group of hedonistic and reckless superheroes funded by Vought dubbed The Seven, and the archenemy of CIA black ops agent Billy Butcher, the Homelander is depicted as an arrogant narcissist thought by Butcher to be a sadistic psychopath who cares little about the well-being of those he professes to protect.",
810
},
911
{
1012
id: "stormfront",
1113
title: "Stormfront",
1214
image: require("../../assets/stormfront.jpg"),
15+
description:
16+
"A female interpretation of the character appears in the second season of the television series, portrayed by Aya Cash. This version's real name is Klara Risinger. Despite her youthful looks and command of social media, she was born in 1919, Frederick Vought's first successful test subject for Compound V, and supported Nazi Germany.",
1317
},
1418
{
1519
id: "atrain",
1620
title: "A-Train",
1721
image: require("../../assets/atrain.jpg"),
22+
description:
23+
"A-Train is a superhero with super-speed whose carelessness was responsible for the accidental death of Wee Hughie's girlfriend in the first issue. A-Train was formerly a member of the Teenage Kix, but was promoted to the Seven as a replacement to Mister Marathon. He is the most juvenile and crudest member of the Seven, being the one who most openly enjoys humiliating Starlight.",
1824
},
1925
{
2026
id: "blacknoir",
2127
title: "Black Noir",
2228
image: require("../../assets/blacknoir.png"),
29+
description:
30+
'Black Noir is a long-time member of the Seven, almost always shown in silhouette with his face obscured. His powers include super strength and supposed skills as a pilot. He is stronger than even the Homelander; Mother\'s Milk states he can "[...] bench a dozen Mack trucks". While initially an enigma, it is revealed at the climax of the series that Black Noir is actually a clone of the Homelander, developed by Vought-American as a contingency, in case the leader of the Seven became a liability.',
2331
},
2432
{
2533
id: "queenmaeve",
2634
title: "Queen Maeve",
2735
image: require("../../assets/queenmaeve.jpg"),
36+
description:
37+
"Queen Maeve is a long-time member of the Seven; her powers include super-strength, flight, and invulnerability. It is suggested that Queen Maeve was more passionate about the Seven's mission than the other superheroes at one point, but found her spirit broken by the team's disastrous handling of the 9/11 attacks. It is also suggested that the 9/11 debacle is the source of her alcoholism.",
2838
},
2939
{
3040
id: "thedeep",
3141
title: "The Deep",
3242
image: require("../../assets/thedeep.jpeg"),
43+
description:
44+
'A long-time member of the Seven, The Deep is marketed by Vought-American as the "King of the Seas" and claims he cannot remove his helmet due to an Atlantean curse. The Deep is actually a man in a diving suit. His powers include super-strength, flight, and durability. The Deep is the most mature, civilized member of the team and often bears the brunt of other characters\' contempt, disregard, and racism.',
3345
},
3446
{
3547
id: "starlight",
3648
title: "Starlight",
3749
image: require("../../assets/starlight.jpg"),
50+
description:
51+
"Starlight, aka Annie January, is the latest member of the Seven. Her known powers are flight and the ability to project blinding light, though she is also hinted to have super-hearing. Starlight was formerly a member of the Young Americans superhero organization, and a conservative Christian. Upon joining the Seven, she is shocked to discover the other members' true nature. On her first visit, the Homelander gives her the choice of providing him, A-Train, and Black Noir with oral sex, or leaving the group.",
3852
},
3953
];

example/src/data/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ export interface Item {
22
id: string;
33
title: string;
44
image: any;
5+
description?: string;
56
}

0 commit comments

Comments
 (0)