Files
18xchat/assets/Scripts/Main/Config/cfg/characters.ts
T
2025-08-01 18:28:36 +08:00

145 lines
5.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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 GirlsData: GirlInfo[] =
[
{
id: 10001,
name: "Anaya Kapoor",
age: 29,
category: Category.shunv,
tag: ["Hot", "Horny"],
priceType: Config18x.PriceType.Free,
pic: {picType: PicType.LocalImage, url: "Image/Girls/10001/Avatar/10001_avatar", imageState: ImageState.Release},
starCount: 5
},
{
id: 10002,
name: "Meher Joshi",
age: 26,
category: Category.shunv,
tag: ["Earth-tone linens", "handcrafted jewelry"],
priceType: Config18x.PriceType.Try,
pic: {picType: PicType.LocalImage, url: "Image/Girls/10002/Avatar/10002_avatar", imageState: ImageState.Release},
starCount: 4
},
{
id: 10003,
name: "Sana Reddy",
age: 29,
category: Category.shunv,
tag: [" Singer-Songwriter", "Dancer"],
priceType: Config18x.PriceType.Coin,
pic: {picType: PicType.LocalImage, url: "Image/Girls/10003/Avatar/10003_avatar", 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" +
"Coffee lover ☕ | Dancer 💃 | Proud Desi ✨\n" +
"Be your own kind of beautiful.",
pics:[
{picType:PicType.LocalGif,url:"Image/Girls/10001/DescImg/10001_video",imageState:ImageState.Release},
{picType:PicType.LocalImage,url:"Image/Girls/10001/DetailImg/10001_1",imageState:ImageState.Release},
{picType:PicType.LocalImage,url:"Image/Girls/10001/DetailImg/10001_2",imageState:ImageState.Lock},
{picType:PicType.LocalImage,url:"Image/Girls/10001/DetailImg/10001_3",imageState:ImageState.UnKnown}
]
},
{
baseInfo:GirlsData[1],
detailDesc:"Im Meher Joshi, a 26-year-old architect passionate about green " +
"design and timeless spaces. Whether Im sketching under a banyan tree or supervising a modern villa in Goa," +
" I find inspiration in nature and culture.",
pics:[{picType:PicType.LocalGif,url:"Image/Girls/10002/DescImg/10002_chatBg",imageState:ImageState.Release},
{picType:PicType.LocalImage,url:"Image/Girls/10002/DetailImg/10002_1",imageState:ImageState.Release},
{picType:PicType.LocalImage,url:"Image/Girls/10002/DetailImg/10002_2",imageState:ImageState.Release},
{picType:PicType.LocalImage,url:"Image/Girls/10002/DetailImg/10002_3",imageState:ImageState.Release}]
},
{
baseInfo:GirlsData[2],
detailDesc:"I'm Sana Reddy, Indias rising pop rebel. I sing in Telugu, " +
"Hindi, and English — because music has no language, just energy. " +
"Off stage, Im chill and goofy. On stage? Im a storm.",
pics:[{picType:PicType.LocalGif,url:"Image/Girls/10003/DescImg/10003_chatBg",imageState:ImageState.Release},
{picType:PicType.LocalImage,url:"Image/Girls/10003/DetailImg/10003_1",imageState:ImageState.Release},
{picType:PicType.LocalImage,url:"Image/Girls/10003/DetailImg/10003_2",imageState:ImageState.Release},
{picType:PicType.LocalImage,url:"Image/Girls/10003/DetailImg/10003_3",imageState:ImageState.Release}]
},
]
export const themes: Theme[] = [
{
themeId: 1001,
name: "熟女",
isRelease: true,
pic: {
picType: PicType.LocalImage,
imageState: ImageState.Release,
url: "Image/Theme/1001"
}
},
{
themeId: 1002,
name: "18岁",
isRelease: false,
pic: {
picType: PicType.LocalImage,
imageState: ImageState.Lock,
url: "Image/Theme/1002"
}
},
{
themeId: 1003,
name: "辣妈",
isRelease: false,
pic: {
picType: PicType.LocalImage,
imageState: ImageState.Lock,
url: "Image/Theme/1003"
}
},
{
themeId: 1004,
name: "捆绑",
isRelease: false,
pic: {
picType: PicType.LocalImage,
imageState: ImageState.Lock,
url: "Image/Theme/1004"
}
},
{
themeId: 1005,
name: "公众野战",
isRelease: false,
pic: {
picType: PicType.LocalImage,
imageState: ImageState.Lock,
url: "Image/Theme/1005"
}
},
{
themeId: 1006,
name: "卡通",
isRelease: false,
pic: {
picType: PicType.LocalImage,
imageState: ImageState.Lock,
url: "Image/Theme/1006"
}
}
]