update
This commit is contained in:
@@ -0,0 +1,197 @@
|
||||
import {Config18x, GirlDetailInfo, GirlInfo, Theme} from "db://assets/Scripts/Main/Config/Config18x";
|
||||
import Category = Config18x.Category;
|
||||
import PicType = Config18x.PicType;
|
||||
import ImageState = Config18x.ImageState;
|
||||
|
||||
export interface Character {
|
||||
id: number;
|
||||
name: string;
|
||||
age: number;
|
||||
description: string;
|
||||
}
|
||||
|
||||
|
||||
export const characters: Character[] = [
|
||||
{
|
||||
id: 1,
|
||||
name: "Anaya Kapoor",
|
||||
age: 29,
|
||||
description: "🌸 Hi, I'm Anaya Kapoor, a 24-year-old dreamer from Mumbai. I blend tradition with trend — from vibrant saris to sleek streetwear, fashion is how I express my story.\n" +
|
||||
"\n" +
|
||||
"As a lifestyle influencer with over 1 million followers, I celebrate beauty in all its forms — skin, spirit, and self-love.\n" +
|
||||
"\n" +
|
||||
"I grew up watching Bollywood classics and dancing to every beat — now, I create my own rhythms with my camera, my words, and my smile.\n" +
|
||||
"\n" +
|
||||
"Coffee lover ☕ | Dancer 💃 | Proud Desi ✨\n" +
|
||||
"\n" +
|
||||
"Be your own kind of beautiful."
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
name: "Anaya Kapoor",
|
||||
age: 28,
|
||||
description: "🌸 Hi, I'm Anaya Kapoor, a 24-year-old dreamer from Mumbai. I blend tradition with trend — from vibrant saris to sleek streetwear, fashion is how I express my story.\n" +
|
||||
"\n" +
|
||||
"As a lifestyle influencer with over 1 million followers, I celebrate beauty in all its forms — skin, spirit, and self-love.\n" +
|
||||
"\n" +
|
||||
"I grew up watching Bollywood classics and dancing to every beat — now, I create my own rhythms with my camera, my words, and my smile.\n" +
|
||||
"\n" +
|
||||
"Coffee lover ☕ | Dancer 💃 | Proud Desi ✨\n" +
|
||||
"\n" +
|
||||
"Be your own kind of beautiful."
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
name: "Anaya Kapoor",
|
||||
age: 25,
|
||||
description: "🌸 Hi, I'm Anaya Kapoor, a 24-year-old dreamer from Mumbai. I blend tradition with trend — from vibrant saris to sleek streetwear, fashion is how I express my story.\n" +
|
||||
"\n" +
|
||||
"As a lifestyle influencer with over 1 million followers, I celebrate beauty in all its forms — skin, spirit, and self-love.\n" +
|
||||
"\n" +
|
||||
"I grew up watching Bollywood classics and dancing to every beat — now, I create my own rhythms with my camera, my words, and my smile.\n" +
|
||||
"\n" +
|
||||
"Coffee lover ☕ | Dancer 💃 | Proud Desi ✨\n" +
|
||||
"\n" +
|
||||
"Be your own kind of beautiful."
|
||||
},
|
||||
]
|
||||
|
||||
export const GirlsData: GirlInfo[] =
|
||||
[
|
||||
{
|
||||
id: 10001,
|
||||
name: "AAA",
|
||||
age: 29,
|
||||
category: Category.shunv,
|
||||
tag: ["AAA", "VBB"],
|
||||
priceType: Config18x.PriceType.Free,
|
||||
pic: {picType: PicType.LocalImage, url: "asd", imageState: ImageState.Release},
|
||||
starCount: 5
|
||||
},
|
||||
{
|
||||
id: 10002,
|
||||
name: "ABB",
|
||||
age: 30,
|
||||
category: Category.shunv,
|
||||
tag: ["AAA", "VBB"],
|
||||
priceType: Config18x.PriceType.Try,
|
||||
pic: {picType: PicType.LocalImage, url: "asd", imageState: ImageState.Release},
|
||||
starCount: 4
|
||||
},
|
||||
{
|
||||
id: 10003,
|
||||
name: "CCB",
|
||||
age: 24,
|
||||
category: Category.shunv,
|
||||
tag: ["AAA", "VBB"],
|
||||
priceType: Config18x.PriceType.Coin,
|
||||
pic: {picType: PicType.LocalImage, url: "asd", imageState: ImageState.Release},
|
||||
starCount: 3
|
||||
}
|
||||
]
|
||||
|
||||
export const girlDetailInfo:GirlDetailInfo[] = [
|
||||
{
|
||||
baseInfo:GirlsData[0],
|
||||
detailDesc:" \"🌸 Hi, I'm Anaya Kapoor, a 24-year-old dreamer from Mumbai. I blend tradition with trend — from vibrant saris to sleek streetwear, fashion is how I express my story.\\n\" +\n" +
|
||||
" \"\\n\" +\n" +
|
||||
" \"As a lifestyle influencer with over 1 million followers, I celebrate beauty in all its forms — skin, spirit, and self-love.\\n\" +\n" +
|
||||
" \"\\n\" +\n" +
|
||||
" \"I grew up watching Bollywood classics and dancing to every beat — now, I create my own rhythms with my camera, my words, and my smile.\\n\" +\n" +
|
||||
" \"\\n\" +\n" +
|
||||
" \"Coffee lover ☕ | Dancer 💃 | Proud Desi ✨\\n\" +\n" +
|
||||
" \"\\n\" +\n" +
|
||||
" \"Be your own kind of beautiful.\"",
|
||||
pics:[{picType:PicType.LocalImage,url:"",imageState:ImageState.Release}]
|
||||
},
|
||||
{
|
||||
baseInfo:GirlsData[1],
|
||||
detailDesc:" \"🌸 Hi2, I'm Anaya Kapoor, a 24-year-old dreamer from Mumbai. I blend tradition with trend — from vibrant saris to sleek streetwear, fashion is how I express my story.\\n\" +\n" +
|
||||
" \"\\n\" +\n" +
|
||||
" \"As a lifestyle influencer with over 1 million followers, I celebrate beauty in all its forms — skin, spirit, and self-love.\\n\" +\n" +
|
||||
" \"\\n\" +\n" +
|
||||
" \"I grew up watching Bollywood classics and dancing to every beat — now, I create my own rhythms with my camera, my words, and my smile.\\n\" +\n" +
|
||||
" \"\\n\" +\n" +
|
||||
" \"Coffee lover ☕ | Dancer 💃 | Proud Desi ✨\\n\" +\n" +
|
||||
" \"\\n\" +\n" +
|
||||
" \"Be your own kind of beautiful.\"",
|
||||
pics:[{picType:PicType.LocalImage,url:"",imageState:ImageState.Lock}]
|
||||
},
|
||||
{
|
||||
baseInfo:GirlsData[2],
|
||||
detailDesc:" \"🌸 Hi3, I'm Anaya Kapoor, a 24-year-old dreamer from Mumbai. I blend tradition with trend — from vibrant saris to sleek streetwear, fashion is how I express my story.\\n\" +\n" +
|
||||
" \"\\n\" +\n" +
|
||||
" \"As a lifestyle influencer with over 1 million followers, I celebrate beauty in all its forms — skin, spirit, and self-love.\\n\" +\n" +
|
||||
" \"\\n\" +\n" +
|
||||
" \"I grew up watching Bollywood classics and dancing to every beat — now, I create my own rhythms with my camera, my words, and my smile.\\n\" +\n" +
|
||||
" \"\\n\" +\n" +
|
||||
" \"Coffee lover ☕ | Dancer 💃 | Proud Desi ✨\\n\" +\n" +
|
||||
" \"\\n\" +\n" +
|
||||
" \"Be your own kind of beautiful.\"",
|
||||
pics:[{picType:PicType.LocalImage,url:"",imageState:ImageState.UnKnown}]
|
||||
},
|
||||
]
|
||||
|
||||
export const themes: Theme[] = [
|
||||
{
|
||||
themeId: 1,
|
||||
name: "熟女",
|
||||
isRelease: true,
|
||||
pic: {
|
||||
picType: PicType.LocalImage,
|
||||
imageState: ImageState.Release,
|
||||
url: ""
|
||||
}
|
||||
},
|
||||
{
|
||||
themeId: 2,
|
||||
name: "18岁",
|
||||
isRelease: false,
|
||||
pic: {
|
||||
picType: PicType.LocalImage,
|
||||
imageState: ImageState.Lock,
|
||||
url: ""
|
||||
}
|
||||
},
|
||||
{
|
||||
themeId: 3,
|
||||
name: "辣妈",
|
||||
isRelease: false,
|
||||
pic: {
|
||||
picType: PicType.LocalImage,
|
||||
imageState: ImageState.Lock,
|
||||
url: ""
|
||||
}
|
||||
},
|
||||
{
|
||||
themeId: 4,
|
||||
name: "捆绑",
|
||||
isRelease: false,
|
||||
pic: {
|
||||
picType: PicType.LocalImage,
|
||||
imageState: ImageState.Lock,
|
||||
url: ""
|
||||
}
|
||||
},
|
||||
{
|
||||
themeId: 5,
|
||||
name: "公众野战",
|
||||
isRelease: false,
|
||||
pic: {
|
||||
picType: PicType.LocalImage,
|
||||
imageState: ImageState.Lock,
|
||||
url: ""
|
||||
}
|
||||
},
|
||||
{
|
||||
themeId: 6,
|
||||
name: "卡通",
|
||||
isRelease: false,
|
||||
pic: {
|
||||
picType: PicType.LocalImage,
|
||||
imageState: ImageState.Lock,
|
||||
url: ""
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user